/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sofia Sans', 'Poppins', sans-serif;
    color: #172B4D;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f6fbff 100%
    );
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   BACKGROUND
========================================================= */

body::before {
    content: "";
    position: fixed;
    width: 380px;
    height: 380px;
    left: -180px;
    top: 120px;
    border-radius: 50%;
    background: #00bfff35;
    filter: blur(80px);
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    width: 350px;
    height: 350px;
    right: -150px;
    top: 300px;
    border-radius: 50%;
    background: #ff2d8d25;
    filter: blur(80px);
    z-index: -1;
}


/* =========================================================
   NAVBAR
========================================================= */

.top-nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid #e7eef8;
    box-shadow: 0 5px 25px rgba(0,0,0,.05);
}

.nav-container {
    max-width: 1300px;
    height: 76px;
    margin: auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #172B4D;
}

.nav-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo .nav-logo-text {
    align-items: flex-start;
    justify-content: center;
    width: auto;
    min-width: 240px;
}

.nav-logo-text strong {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .7px;
    color: #0D47A1;
}

.nav-logo-text span {
    margin-top: 4px;
    font-size: 10px;
    color: #77869a;
    font-weight: 500;
}

.nav-logo .nav-svg-logo {
    display: block !important;
    width: 200px !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    color: #263238;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: .25s ease;
}

.nav-menu a i {
    color: #0D6EFD;
    font-size: 13px;
}

.nav-menu a:hover {
    color: #0D6EFD;
    background: #eef7ff;
}

.nav-contact {
    color: #fff !important;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    ) !important;
    padding: 12px 20px !important;
    border-radius: 30px !important;
    box-shadow: 0 8px 22px rgba(13,110,253,.22);
}

.nav-contact i {
    color: #fff !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #eef7ff;
    color: #0D6EFD;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 9px !important;
    margin-left: 3px;
    transition: transform .25s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 250px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid #e5edf7;
    border-radius: 16px;
    box-shadow:
        0 20px 45px rgba(13,71,161,.14),
        0 5px 15px rgba(0,0,0,.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
    z-index: 99999;
}

.nav-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    color: #263238;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

.dropdown-menu li a i:first-child {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0d6efd;
    background: #eef7ff;
    border-radius: 8px;
    font-size: 13px;
}

.dropdown-menu li a:hover {
    color: #0d6efd;
    background: #eef7ff;
    transform: translateX(3px);
}

.dropdown-menu li a:hover i:first-child {
    color: #fff;
    background: linear-gradient(
        135deg,
        #00bfff,
        #0d6efd
    );
}

.dropdown-menu li a::after {
    display: none !important;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    max-width: 1300px;
    min-height: 610px;
    margin: auto;
    padding: 70px 5% 55px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 55px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 30px;
    background: #eef8ff;
    color: #0D6EFD;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
}

.hero-tag i {
    color: #00AEEF;
}

.hero h1 {
    margin-top: 20px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -2px;
    color: #172B4D;
}

.hero h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        #00BFFF,
        #0D6EFD,
        #ff0080
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 620px;
    margin-top: 24px;
    color: #637083;
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.hero-btn-primary {
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
    box-shadow: 0 12px 28px rgba(13,110,253,.23);
}

.hero-btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
}

.hero-btn-secondary {
    color: #0D47A1;
    background: #fff;
    border: 1px solid #dce8f5;
}

.hero-btn-secondary:hover {
    color: #0D6EFD;
    border-color: #0D6EFD;
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #566579;
    font-size: 12px;
    font-weight: 600;
}

.trust-item i {
    color: #0D6EFD;
    font-size: 15px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 15px;
    border-radius: 35px;
    background: linear-gradient(
        135deg,
        #eaf8ff,
        #fff
    );
    box-shadow: 0 25px 60px rgba(13,71,161,.13);
}

.hero-image-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.hero-floating-card {
    position: absolute;
    left: -25px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 17px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.hero-floating-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
}

.hero-floating-card strong {
    display: block;
    color: #172B4D;
    font-size: 13px;
}

.hero-floating-card span {
    display: block;
    margin-top: 2px;
    color: #7a8797;
    font-size: 10px;
}


/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {
    max-width: 1180px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

.quick-services-inner {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e5edf7;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.quick-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    padding: 8px;
    border-radius: 12px;
    color: #35445a;
    font-size: 12px;
    font-weight: 700;
    transition: .25s ease;
}

.quick-service i {
    color: #0D6EFD;
    font-size: 17px;
}

.quick-service:hover {
    background: #eef8ff;
    color: #0D6EFD;
    transform: translateY(-2px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    max-width: 1250px;
    margin: 35px auto 80px;
    padding: 0 5%;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 30px;
    background: #eef8ff;
    color: #0D6EFD;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 900;
    color: #172B4D;
    letter-spacing: -1px;
}

.section-heading h2 span {
    background: linear-gradient(
        90deg,
        #00BFFF,
        #0D6EFD
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    margin-top: 12px;
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5edf7;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.055);
    transition: .35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #b9dff8;
    box-shadow: 0 20px 45px rgba(13,71,161,.13);
}

.service-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #eef8ff,
        #f8fbff
    );
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-number {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
    font-size: 11px;
    font-weight: 800;
}

.service-content {
    position: relative;
    padding: 22px 20px 20px;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 13px;
    color: #0D6EFD;
    background: #eef8ff;
    font-size: 18px;
    transition: .3s ease;
}

.service-card:hover .service-icon {
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
}

.service-content h3 {
    color: #172B4D;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 7px;
}

.service-content p {
    min-height: 48px;
    color: #718096;
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0D6EFD;
    font-size: 12px;
    font-weight: 800;
}

.services-bottom {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.all-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 30px;
    color: #0D47A1;
    background: #fff;
    border: 1px solid #dce8f5;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.all-services-btn:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
    border-color: transparent;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    max-width: 1250px;
    margin: 40px auto 55px;
    padding: 0 5%;
}

.why-container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 45px;
    align-items: center;
}

.why-content h2 {
    max-width: 580px;
    color: #172B4D;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1px;
}

.why-content h2 span {
    display: block;
    background: linear-gradient(
        90deg,
        #00BFFF,
        #0D6EFD
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-intro {
    max-width: 560px;
    margin: 14px 0 24px;
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 13px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e6eef7;
    border-radius: 14px;
    transition: .3s ease;
}

.why-feature:hover {
    transform: translateY(-3px);
    border-color: #b8ddf8;
    box-shadow: 0 10px 25px rgba(13,71,161,.08);
}

.why-feature-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #0D6EFD;
    background: #eef8ff;
    font-size: 15px;
}

.why-feature:hover .why-feature-icon {
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
}

.why-feature h3 {
    color: #172B4D;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px;
}

.why-feature p {
    color: #718096;
    font-size: 11px;
    line-height: 1.5;
}

.why-visual {
    position: relative;
    padding: 10px;
}

.why-card-image {
    width: 100%;
    height: 370px;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        #eef8ff,
        #f7fbff
    );
    box-shadow: 0 20px 50px rgba(13,71,161,.13);
}

.why-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .5s ease;
}

.why-visual:hover .why-card-image img {
    transform: scale(1.04);
}

.why-floating-card {
    position: absolute;
    left: -5px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(15px);
    border: 1px solid #e5edf7;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.floating-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
}


/* =========================================================
   CTA
========================================================= */

.business-cta {
    max-width: 1250px;
    margin: 0 auto 65px;
    padding: 0 5%;
}

.cta-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 22px;
    background: linear-gradient(
        110deg,
        #082b63,
        #0D47A1,
        #008fc7
    );
    box-shadow: 0 20px 45px rgba(8,43,99,.18);
}

.cta-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #0D6EFD;
    background: #fff;
    font-size: 23px;
}

.cta-text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-small {
    display: block;
    color: #8fe4ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cta-text h2 {
    color: #fff;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 900;
}

.cta-text h2 span {
    color: #65ddff;
}

.cta-text p {
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: .3s ease;
}

.cta-primary {
    color: #0D47A1;
    background: #fff;
}

.cta-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    max-width: 1250px;
    margin: 20px auto 60px;
    padding: 0 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 45px;
    align-items: center;
}

.contact-info h2 {
    color: #172B4D;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 900;
}

.contact-info h2 span {
    display: block;
    background: linear-gradient(
        90deg,
        #00BFFF,
        #0D6EFD
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-intro {
    color: #718096;
    font-size: 13px;
    line-height: 1.7;
    max-width: 480px;
    margin: 14px 0 24px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 11px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e6eef7;
    border-radius: 14px;
    transition: .3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: #b9ddf7;
    box-shadow: 0 10px 25px rgba(13,71,161,.08);
}

.contact-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #0D6EFD;
    background: #eef8ff;
    font-size: 14px;
}

.whatsapp-icon {
    color: #fff;
    background: #20b866;
}

.contact-item span {
    display: block;
    color: #8a96a8;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item strong {
    display: block;
    color: #172B4D;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
}

.contact-card {
    background: #fff;
    border: 1px solid #e3ecf6;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(13,71,161,.08);
}

.contact-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #edf2f7;
}

.contact-card-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
    font-size: 18px;
}

.contact-card-top h3 {
    color: #172B4D;
    font-size: 18px;
    font-weight: 800;
}

.contact-card-top p {
    color: #8a96a8;
    font-size: 11px;
    margin-top: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: #34445b;
    font-size: 11px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dfe8f2;
    background: #f9fbfd;
    border-radius: 10px;
    padding: 11px 12px;
    color: #172B4D;
    font-family: 'Sofia Sans', sans-serif;
    font-size: 12px;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 85px;
}

.contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    cursor: pointer;
    padding: 13px 20px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
    font-family: 'Sofia Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    color: #fff;
    background: linear-gradient(
        135deg,
        #061f48,
        #082b63
    );
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    padding: 50px 5% 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-svg-logo {
    display: block !important;
    width: 220px !important;
    height: auto !important;
    max-width: none !important;
}

.footer-logo-text span {
    display: block;
    margin-top: 5px;
    color: #d9e5f5;
    font-size: 13px;
    font-weight: 500;
}

.footer-brand > p {
    max-width: 290px;
    color: #aebed1;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd8e8;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    font-size: 13px;
    transition: .3s ease;
}

.footer-social a:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        #00BFFF,
        #0D6EFD
    );
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    margin-top: 7px;
    border-radius: 5px;
    background: #00BFFF;
}

.footer-column > a {
    color: #9fb2cc;
    font-size: 11px;
    text-decoration: none;
    transition: .25s ease;
}

.footer-column > a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact > a {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact > a i {
    width: 16px;
    color: #42cfff;
    margin-top: 2px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom-inner {
    max-width: 1250px;
    margin: auto;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-bottom p {
    color: #8498b1;
    font-size: 10px;
}

.footer-bottom p strong {
    color: #cbd8e8;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: #8498b1;
    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 5%;
        right: 5%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 3px;
        background: #fff;
        border: 1px solid #e5edf7;
        border-radius: 16px;
        box-shadow: 0 20px 45px rgba(0,0,0,.14);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        padding: 14px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 55px;
        gap: 40px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .quick-services-inner {
        grid-template-columns: repeat(3,1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .nav-container {
        height: 68px;
    }

    .nav-menu {
        top: 68px;
    }

    .nav-logo img {
        width: 42px;
        height: 42px;
    }

    .nav-logo .nav-logo-text {
        min-width: 190px;
    }

    .nav-logo .nav-svg-logo {
        width: 170px !important;
    }

    .nav-logo-text span {
        font-size: 9px;
    }

    .hero {
        min-height: auto;
        padding: 45px 5% 40px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-image-wrap {
        padding: 9px;
        border-radius: 25px;
    }

    .hero-image-wrap img {
        height: 280px;
        border-radius: 18px;
    }

    .hero-floating-card {
        left: 0;
        bottom: 15px;
        padding: 10px 12px;
    }

    .quick-services {
        margin-bottom: 40px;
    }

    .quick-services-inner {
        grid-template-columns: repeat(2,1fr);
        padding: 9px;
    }

    .quick-service {
        min-height: 52px;
        font-size: 11px;
    }

    .services-section {
        margin-top: 25px;
        margin-bottom: 55px;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-image {
        height: 190px;
    }

    .why-content h2 {
        font-size: 31px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .why-card-image {
        height: 260px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h2 {
        font-size: 31px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 13px;
        padding: 22px 18px;
    }

    .cta-buttons {
        grid-column: 1 / -1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
        padding: 40px 5%;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-svg-logo {
        width: 175px !important;
    }

    .footer-logo-text span {
        font-size: 11px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero h1 span {
        font-size: 43px;
    }

    .hero-description {
        font-size: 14px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

}


/* =========================================================
   MOBILE DROPDOWN
========================================================= */

@media (max-width: 768px) {

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown:hover > .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        margin: 4px 0 0;
        padding: 5px;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8fbff;
        border: 1px solid #e5edf7;
        border-radius: 12px;
        box-shadow: none;
    }

    .nav-dropdown.dropdown-open > .dropdown-menu {
        display: block;
    }

    .nav-dropdown.dropdown-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding: 10px 12px;
        font-size: 13px;
    }

}


















/* ==========================================
   MUG PRINTING PAGE
   Page-specific CSS only
========================================== */

.mug-page {
    --mug-dark: #111827;
    --mug-text: #374151;
    --mug-muted: #6b7280;
    --mug-border: #e5e7eb;
    --mug-light: #f8fafc;
    --mug-white: #ffffff;
    --mug-primary: #0b8a68;
    --mug-primary-dark: #066b51;

    color: var(--mug-text);
    background: var(--mug-white);
    overflow: hidden;
}

.mug-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   COMMON
========================= */

.mug-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--mug-primary);
    text-transform: uppercase;
}

.mug-section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.mug-section-heading h2 {
    margin: 14px 0 18px;
    color: var(--mug-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.mug-section-heading h2 span,
.mug-hero-content h1 span,
.mug-feature-content h2 span,
.mug-cta h2 span {
    color: var(--mug-primary);
}

.mug-section-heading p {
    margin: 0;
    color: var(--mug-muted);
    font-size: 16px;
    line-height: 1.8;
}

.mug-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* =========================
   BUTTONS
========================= */

.mug-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.mug-btn-primary {
    color: #fff;
    background: var(--mug-primary);
    box-shadow: 0 10px 25px rgba(11, 138, 104, .18);
}

.mug-btn-primary:hover {
    color: #fff;
    background: var(--mug-primary-dark);
    transform: translateY(-2px);
}

.mug-btn-outline {
    color: var(--mug-dark);
    border: 1px solid var(--mug-border);
    background: #fff;
}

.mug-btn-outline:hover {
    color: var(--mug-primary);
    border-color: var(--mug-primary);
}

.mug-btn-light {
    color: var(--mug-dark);
    background: #fff;
}

.mug-btn-light:hover {
    color: var(--mug-primary);
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.mug-hero {
    position: relative;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at 80% 20%, rgba(11,138,104,.08), transparent 35%),
        #fff;
}

.mug-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.mug-hero-content h1 {
    max-width: 650px;
    margin: 16px 0 24px;
    color: var(--mug-dark);
    font-size: clamp(44px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -3px;
}

.mug-hero-content > p {
    max-width: 600px;
    margin: 0 0 32px;
    color: var(--mug-muted);
    font-size: 17px;
    line-height: 1.8;
}

.mug-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mug-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--mug-border);
}

.mug-hero-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mug-hero-trust strong {
    color: var(--mug-dark);
    font-size: 15px;
}

.mug-hero-trust span {
    color: var(--mug-muted);
    font-size: 12px;
}


/* =========================
   IMAGE PLACEHOLDER
========================= */

.mug-hero-image,
.mug-feature-image {
    position: relative;
}

.mug-image-placeholder {
    min-height: 530px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 24px;
    border: 1px dashed #cbd5e1;
    background:
        linear-gradient(145deg, #f8fafc, #eef7f4);
    color: #94a3b8;
}

.mug-image-placeholder i {
    margin-bottom: 5px;
    color: var(--mug-primary);
    font-size: 55px;
}

.mug-image-placeholder span {
    color: var(--mug-dark);
    font-size: 18px;
    font-weight: 700;
}

.mug-image-placeholder small {
    color: var(--mug-muted);
}


/* =========================
   INTRO
========================= */

.mug-intro {
    padding: 110px 0;
    background: var(--mug-light);
}

.mug-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mug-intro-card {
    padding: 35px;
    border: 1px solid var(--mug-border);
    border-radius: 14px;
    background: #fff;
    transition: .3s ease;
}

.mug-intro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11,138,104,.3);
    box-shadow: 0 20px 50px rgba(15,23,42,.07);
}

.mug-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 12px;
    color: var(--mug-primary);
    background: rgba(11,138,104,.08);
    font-size: 20px;
}

.mug-intro-card h3 {
    margin: 0 0 12px;
    color: var(--mug-dark);
    font-size: 20px;
}

.mug-intro-card p {
    margin: 0;
    color: var(--mug-muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================
   SERVICES
========================= */

.mug-services {
    padding: 110px 0;
}

.mug-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mug-service-card {
    position: relative;
    padding: 32px 28px;
    border: 1px solid var(--mug-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: .3s ease;
}

.mug-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

.mug-service-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #e2e8f0;
    font-size: 30px;
    font-weight: 900;
}

.mug-service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 12px;
    color: #fff;
    background: var(--mug-primary);
    font-size: 20px;
}

.mug-service-card h3 {
    margin: 0 0 12px;
    color: var(--mug-dark);
    font-size: 19px;
}

.mug-service-card p {
    min-height: 100px;
    margin: 0 0 22px;
    color: var(--mug-muted);
    font-size: 14px;
    line-height: 1.75;
}

.mug-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mug-primary);
    font-size: 13px;
    font-weight: 700;
}


/* =========================
   FEATURE
========================= */

.mug-feature {
    padding: 110px 0;
    background: var(--mug-light);
}

.mug-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.mug-feature-image .mug-image-placeholder {
    min-height: 500px;
}

.mug-feature-content h2 {
    margin: 15px 0 20px;
    color: var(--mug-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.mug-feature-content > p {
    margin: 0 0 30px;
    color: var(--mug-muted);
    line-height: 1.8;
}

.mug-feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

.mug-feature-list > div {
    display: flex;
    gap: 15px;
}

.mug-check {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--mug-primary);
    background: rgba(11,138,104,.1);
    font-size: 12px;
}

.mug-feature-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mug-dark);
    font-size: 15px;
}

.mug-feature-list p {
    margin: 0;
    color: var(--mug-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   PROCESS
========================= */

.mug-process {
    padding: 110px 0;
}

.mug-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mug-process-item {
    position: relative;
    text-align: center;
}

.mug-process-icon {
    position: relative;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    color: var(--mug-primary);
    background: rgba(11,138,104,.08);
    font-size: 25px;
}

.mug-process-icon span {
    position: absolute;
    top: -4px;
    right: -3px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--mug-primary);
    font-size: 9px;
    font-weight: 800;
}

.mug-process-item h3 {
    margin: 0 0 10px;
    color: var(--mug-dark);
    font-size: 18px;
}

.mug-process-item p {
    margin: 0;
    color: var(--mug-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   OCCASIONS
========================= */

.mug-occasions {
    padding: 110px 0;
    background: var(--mug-light);
}

.mug-occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mug-occasion-card {
    padding: 32px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--mug-border);
}

.mug-occasion-card i {
    margin-bottom: 25px;
    color: var(--mug-primary);
    font-size: 28px;
}

.mug-occasion-card h3 {
    margin: 0 0 10px;
    color: var(--mug-dark);
    font-size: 18px;
}

.mug-occasion-card p {
    margin: 0;
    color: var(--mug-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   CTA
========================= */

.mug-cta {
    padding: 100px 0;
}

.mug-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 65px;
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(135deg, #0b8a68, #075b48);
}

.mug-cta-box .mug-eyebrow {
    color: rgba(255,255,255,.75);
}

.mug-cta h2 {
    max-width: 650px;
    margin: 12px 0 15px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.mug-cta h2 span {
    color: #fff;
}

.mug-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .mug-hero-grid,
    .mug-feature-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mug-service-grid,
    .mug-process-grid,
    .mug-occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mug-hero-content {
        max-width: 750px;
    }

    .mug-hero-image {
        max-width: 700px;
    }

    .mug-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 650px) {

    .mug-container {
        width: min(100% - 28px, 1180px);
    }

    .mug-hero,
    .mug-intro,
    .mug-services,
    .mug-feature,
    .mug-process,
    .mug-occasions {
        padding: 70px 0;
    }

    .mug-hero-content h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .mug-hero-content > p {
        font-size: 15px;
    }

    .mug-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mug-btn {
        width: 100%;
    }

    .mug-hero-trust {
        gap: 18px;
    }

    .mug-image-placeholder,
    .mug-feature-image .mug-image-placeholder {
        min-height: 350px;
    }

    .mug-intro-grid,
    .mug-service-grid,
    .mug-process-grid,
    .mug-occasion-grid {
        grid-template-columns: 1fr;
    }

    .mug-service-card p {
        min-height: auto;
    }

    .mug-section-heading {
        margin-bottom: 35px;
    }

    .mug-cta {
        padding: 60px 0;
    }

    .mug-cta-box {
        padding: 40px 25px;
        border-radius: 16px;
    }
}









/* =========================================================
   BARAKA PRINTERS
   CLOTHING PRINTING PAGE
   ALL CLASSES ARE CP- PREFIXED
   SO EXISTING SITE CSS IS NOT AFFECTED
========================================================= */

.cp-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.cp-hero {
    min-height: 650px;
    padding: 85px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(11,138,104,.10),
            transparent 34%
        ),
        #f7faf9;
}

.cp-hero-content {
    max-width: 650px;
}

.cp-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0b8a68;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cp-label i {
    font-size: 14px;
}

.cp-hero h1 {
    margin: 20px 0;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 800;
    color: #171717;
}

.cp-hero h1 span {
    display: block;
    color: #0b8a68;
}

.cp-hero-content > p {
    max-width: 600px;
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.cp-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.cp-btn-primary {
    background: #0b8a68;
    color: #fff;
}

.cp-btn-primary:hover {
    background: #087258;
    transform: translateY(-2px);
}

.cp-btn-outline {
    border: 1px solid #d7e4df;
    color: #222;
    background: #fff;
}

.cp-btn-outline:hover {
    border-color: #0b8a68;
    color: #0b8a68;
}

.cp-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cp-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 11px;
    font-weight: 600;
}

.cp-trust i {
    color: #0b8a68;
}

.cp-hero-visual {
    position: relative;
}

.cp-hero-photo {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 25px;
    transform: rotate(1deg);
    box-shadow: 0 25px 60px rgba(0,0,0,.13);
}

.cp-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cp-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(0,0,0,.18)
    );
}

.cp-floating-card {
    position: absolute;
    left: -25px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 15px 40px rgba(0,0,0,.14);
}

.cp-floating-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #edf8f4;
    color: #0b8a68;
}

.cp-floating-card strong {
    display: block;
    font-size: 13px;
    color: #222;
}

.cp-floating-card small {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 10px;
}


/* =========================================================
   CATEGORY BAR
========================================================= */

.cp-category-bar {
    padding: 0 7% 70px;
    background: #f7faf9;
}

.cp-category-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
}

.cp-category-inner a {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border-radius: 9px;
    text-decoration: none;
    color: #444;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease;
}

.cp-category-inner a i {
    color: #0b8a68;
    font-size: 18px;
}

.cp-category-inner a:hover {
    background: #edf8f4;
    color: #0b8a68;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.cp-intro,
.cp-methods,
.cp-why {
    padding: 100px 7%;
}

.cp-intro {
    background: #fff;
}

.cp-methods {
    background: #f7faf9;
}

.cp-why {
    background: #fff;
}

.cp-section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.cp-section-heading h2 {
    margin: 14px 0;
    color: #171717;
    font-size: clamp(32px,4vw,48px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.cp-section-heading h2 span {
    color: #0b8a68;
}

.cp-section-heading p {
    max-width: 650px;
    margin: auto;
    color: #707070;
    line-height: 1.8;
    font-size: 14px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.cp-product-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.cp-product {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8efec;
    border-radius: 17px;
    box-shadow: 0 8px 30px rgba(0,0,0,.045);
    transition: .3s ease;
}

.cp-product:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.cp-product-image {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.cp-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.cp-product:hover .cp-product-image img {
    transform: scale(1.05);
}

.cp-product-image > span {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #0b8a68;
    font-size: 11px;
    font-weight: 800;
}

.cp-product-body {
    padding: 25px;
}

.cp-product-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 11px;
    background: #edf8f4;
    color: #0b8a68;
}

.cp-product-body h3 {
    margin: 0 0 9px;
    font-size: 19px;
    color: #222;
}

.cp-product-body p {
    margin: 0 0 18px;
    color: #727272;
    font-size: 13px;
    line-height: 1.7;
}

.cp-product-body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b8a68;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   PRINT METHODS
========================================================= */

.cp-method-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.cp-method {
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid #e6eeeb;
    border-radius: 15px;
    transition: .25s ease;
}

.cp-method:hover {
    transform: translateY(-5px);
    border-color: #b8d9cf;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.cp-method > span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #bdcec8;
    font-size: 11px;
    font-weight: 800;
}

.cp-method > i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 13px;
    background: #edf8f4;
    color: #0b8a68;
    font-size: 20px;
}

.cp-method h3 {
    margin: 0 0 9px;
    font-size: 18px;
}

.cp-method p {
    margin: 0;
    color: #737373;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   BUSINESS WORKWEAR
========================================================= */

.cp-business {
    max-width: 1250px;
    margin: 0 auto;
    padding: 100px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.cp-business-image {
    height: 500px;
    overflow: hidden;
    border-radius: 22px;
}

.cp-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-business-content h2 {
    margin: 15px 0;
    font-size: clamp(34px,4vw,50px);
    line-height: 1.1;
}

.cp-business-content h2 span {
    display: block;
    color: #0b8a68;
}

.cp-business-content > p {
    max-width: 550px;
    color: #707070;
    line-height: 1.8;
}

.cp-check-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin: 28px 0;
}

.cp-check-list div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #454545;
    font-size: 12px;
    font-weight: 600;
}

.cp-check-list i {
    color: #0b8a68;
}


/* =========================================================
   WHY
========================================================= */

.cp-why-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.cp-why-card {
    padding: 30px 23px;
    text-align: center;
    border: 1px solid #e7eeeb;
    border-radius: 16px;
    transition: .25s ease;
}

.cp-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.cp-why-card > i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    border-radius: 14px;
    background: #edf8f4;
    color: #0b8a68;
    font-size: 21px;
}

.cp-why-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.cp-why-card p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cp-cta {
    padding: 70px 7%;
    background: linear-gradient(135deg,#0b8a68,#087158);
}

.cp-cta-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
}

.cp-cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: rgba(255,255,255,.13);
    color: #fff;
    font-size: 27px;
}

.cp-cta-text small {
    color: rgba(255,255,255,.7);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cp-cta-text h2 {
    margin: 7px 0;
    color: #fff;
    font-size: 38px;
}

.cp-cta-text h2 span {
    color: #fff;
}

.cp-cta-text p {
    margin: 0;
    max-width: 580px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.7;
}

.cp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    background: #fff;
    color: #0b8a68;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   CONTACT
========================================================= */

.cp-contact {
    padding: 100px 7%;
    background: #f7faf9;
}

.cp-contact-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.cp-contact-info h2 {
    margin: 15px 0;
    font-size: clamp(34px,4vw,50px);
    line-height: 1.1;
}

.cp-contact-info h2 span {
    display: block;
    color: #0b8a68;
}

.cp-contact-info > p {
    max-width: 520px;
    color: #707070;
    line-height: 1.8;
    font-size: 14px;
}

.cp-contact-details {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.cp-contact-details a {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: #222;
}

.cp-contact-details a > i {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #edf8f4;
    color: #0b8a68;
}

.cp-contact-details small {
    display: block;
    color: #888;
    font-size: 10px;
}

.cp-contact-details strong {
    display: block;
    margin-top: 2px;
    font-size: 13px;
}

.cp-form-card {
    padding: 32px;
    background: #fff;
    border: 1px solid #e5eeea;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,.06);
}

.cp-form-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
}

.cp-form-heading > div:first-child {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #edf8f4;
    color: #0b8a68;
}

.cp-form-heading h3 {
    margin: 0;
    font-size: 18px;
}

.cp-form-heading p {
    margin: 3px 0 0;
    color: #888;
    font-size: 11px;
}

.cp-form-card form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cp-form-card label {
    margin-top: 8px;
    color: #444;
    font-size: 11px;
    font-weight: 700;
}

.cp-form-card input,
.cp-form-card select,
.cp-form-card textarea {
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
    padding: 12px 13px;
    border: 1px solid #dde7e3;
    border-radius: 8px;
    outline: none;
    background: #fff;
    color: #333;
    font-family: inherit;
    font-size: 12px;
    transition: .2s ease;
}

.cp-form-card input:focus,
.cp-form-card select:focus,
.cp-form-card textarea:focus {
    border-color: #0b8a68;
    box-shadow: 0 0 0 3px rgba(11,138,104,.08);
}

.cp-form-card textarea {
    resize: vertical;
}

.cp-form-card button {
    min-height: 48px;
    margin-top: 10px;
    border: 0;
    border-radius: 8px;
    background: #0b8a68;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
}

.cp-form-card button:hover {
    background: #087158;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .cp-hero {
        grid-template-columns: 1fr;
        padding-top: 65px;
    }

    .cp-hero-content {
        max-width: 750px;
    }

    .cp-product-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cp-method-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cp-why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cp-business {
        grid-template-columns: 1fr;
    }

    .cp-contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .cp-hero {
        padding: 55px 20px 70px;
        gap: 40px;
    }

    .cp-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .cp-hero-content > p {
        font-size: 14px;
    }

    .cp-hero-photo {
        height: 360px;
        border-radius: 18px;
    }

    .cp-floating-card {
        left: 10px;
        bottom: 18px;
        padding: 13px 15px;
    }

    .cp-category-bar {
        padding: 0 15px 50px;
    }

    .cp-category-inner {
        grid-template-columns: repeat(3,1fr);
    }

    .cp-intro,
    .cp-methods,
    .cp-why,
    .cp-contact {
        padding: 70px 20px;
    }

    .cp-product-grid {
        grid-template-columns: 1fr;
    }

    .cp-method-grid {
        grid-template-columns: 1fr;
    }

    .cp-business {
        padding: 70px 20px;
        gap: 40px;
    }

    .cp-business-image {
        height: 350px;
    }

    .cp-check-list {
        grid-template-columns: 1fr;
    }

    .cp-why-grid {
        grid-template-columns: 1fr;
    }

    .cp-cta {
        padding: 55px 20px;
    }

    .cp-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cp-cta-icon {
        margin: auto;
    }

    .cp-cta-button {
        margin: auto;
    }

    .cp-form-row {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .cp-category-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .cp-hero h1 {
        font-size: 35px;
    }

    .cp-buttons {
        flex-direction: column;
    }

    .cp-btn {
        width: 100%;
    }

    .cp-trust {
        flex-direction: column;
        gap: 10px;
    }

    .cp-form-card {
        padding: 22px;
    }

}


/* =========================================================
   BARAKA PRINTERS
   WEBSITE DESIGN PAGE
   BLUE CORPORATE THEME
========================================================= */

.bp-web-page {

    --bp-blue: #0D6EFD;
    --bp-blue-dark: #084298;
    --bp-cyan: #00BFFF;

    --bp-dark: #111827;
    --bp-text: #374151;
    --bp-muted: #6B7280;

    --bp-light: #F8FBFF;
    --bp-light-blue: #EEF8FF;

    --bp-border: #E5EAF0;

    background: #ffffff;
    color: var(--bp-text);

    font-family: "Poppins", sans-serif;

    overflow: hidden;
}


.bp-web-page *,
.bp-web-page *::before,
.bp-web-page *::after {
    box-sizing: border-box;
}


.bp-web-container {

    width: min(1180px, calc(100% - 40px));

    margin: auto;
}


/* =========================================================
   EYEBROW
========================================================= */

.bp-web-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color: var(--bp-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.bp-web-eyebrow i {
    font-size: 12px;
}


.bp-web-eyebrow-light {
    color: #8FDFFF;
}


/* =========================================================
   HERO
========================================================= */

.bp-web-hero {

    position: relative;

    padding: 100px 0 90px;

    background:

        radial-gradient(
            circle at 85% 15%,
            rgba(0,191,255,.13),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #F8FBFF 0%,
            #FFFFFF 55%,
            #EEF8FF 100%
        );
}


.bp-web-hero::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    bottom: -200px;

    border-radius: 50%;

    background: rgba(13,110,253,.05);

    pointer-events: none;
}


.bp-web-hero-grid {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}


.bp-web-hero-content h1 {

    margin: 0 0 22px;

    max-width: 680px;

    color: var(--bp-dark);

    font-size: clamp(42px, 5vw, 67px);

    line-height: 1.04;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.bp-web-hero-content h1 span {

    display: block;

    color: var(--bp-blue);
}


.bp-web-hero-content > p {

    max-width: 620px;

    margin: 0 0 28px;

    color: var(--bp-muted);

    font-size: 14px;

    line-height: 1.9;
}


.bp-web-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 27px;
}


.bp-web-btn {

    min-height: 51px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: .25s ease;
}


.bp-web-btn-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--bp-cyan),
            var(--bp-blue)
        );

    box-shadow:
        0 12px 28px rgba(13,110,253,.22);
}


.bp-web-btn-primary:hover {

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(13,110,253,.30);
}


.bp-web-btn-outline {

    color: var(--bp-blue);

    background: #fff;

    border: 1px solid #DCE7F4;
}


.bp-web-btn-outline:hover {

    color: var(--bp-blue);

    border-color: var(--bp-blue);

    transform: translateY(-3px);
}


.bp-web-trust-row {

    display: flex;

    flex-wrap: wrap;

    gap: 19px;
}


.bp-web-trust-row div {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #64748B;

    font-size: 10px;

    font-weight: 600;
}


.bp-web-trust-row i {

    color: var(--bp-blue);
}


/* =========================================================
   BROWSER PREVIEW
========================================================= */

.bp-web-hero-preview {

    position: relative;

    padding: 15px;
}


.bp-browser {

    overflow: hidden;

    background: #fff;

    border: 1px solid #DCE5EF;

    border-radius: 15px;

    box-shadow:
        0 30px 70px rgba(15,23,42,.13);
}


.bp-browser-bar {

    height: 43px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #F3F7FB;

    border-bottom: 1px solid #E5EAF0;
}


.bp-browser-dots {

    display: flex;

    gap: 5px;
}


.bp-browser-dots span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #B8C5D3;
}


.bp-browser-address {

    flex: 1;

    height: 25px;

    padding: 6px 11px;

    border-radius: 5px;

    background: #fff;

    color: #94A3B8;

    font-size: 8px;
}


.bp-browser-content {

    position: relative;

    min-height: 375px;

    padding: 25px;
}


.bp-demo-nav {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 60px;
}


.bp-demo-nav strong {

    color: var(--bp-blue);

    font-size: 10px;

    letter-spacing: 1px;
}


.bp-demo-nav div {

    display: flex;

    gap: 6px;
}


.bp-demo-nav div span {

    width: 24px;
    height: 4px;

    border-radius: 5px;

    background: #DDE7F0;
}


.bp-demo-main {

    max-width: 300px;
}


.bp-demo-main small {

    color: var(--bp-blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;
}


.bp-demo-main h3 {

    margin: 10px 0;

    color: var(--bp-dark);

    font-size: 29px;

    line-height: 1.12;
}


.bp-demo-main p {

    margin: 0 0 18px;

    color: #7B8794;

    font-size: 9px;

    line-height: 1.7;
}


.bp-demo-btn {

    display: inline-flex;

    padding: 9px 17px;

    border-radius: 5px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--bp-cyan),
            var(--bp-blue)
        );

    font-size: 8px;

    font-weight: 700;
}


.bp-demo-card {

    position: absolute;

    right: 27px;

    bottom: 40px;

    width: 150px;

    padding: 17px;

    border-radius: 10px;

    background: #F8FBFF;

    border: 1px solid #E4EDF6;

    box-shadow:
        0 12px 30px rgba(15,23,42,.07);
}


.bp-demo-card i {

    display: block;

    margin-bottom: 9px;

    color: var(--bp-blue);

    font-size: 23px;
}


.bp-demo-card strong {

    display: block;

    color: var(--bp-dark);

    font-size: 10px;
}


.bp-demo-card small {

    display: block;

    margin-top: 4px;

    color: #94A3B8;

    font-size: 7px;
}


.bp-web-floating-card {

    position: absolute;

    left: -4px;

    bottom: -5px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    background: #fff;

    border: 1px solid #E1E8F0;

    border-radius: 9px;

    box-shadow:
        0 15px 35px rgba(15,23,42,.12);
}


.bp-web-floating-card > i {

    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    color: var(--bp-blue);

    background: var(--bp-light-blue);
}


.bp-web-floating-card strong,
.bp-web-floating-card small {

    display: block;
}


.bp-web-floating-card strong {

    color: var(--bp-dark);

    font-size: 10px;
}


.bp-web-floating-card small {

    margin-top: 3px;

    color: #94A3B8;

    font-size: 8px;
}


/* =========================================================
   SECTION
========================================================= */

.bp-web-section {

    padding: 95px 0;
}


.bp-web-white {
    background: #fff;
}


.bp-web-light {

    background:
        linear-gradient(
            180deg,
            #F8FBFF 0%,
            #FFFFFF 100%
        );
}


.bp-web-section-heading {

    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.bp-web-section-heading h2 {

    margin: 0 0 15px;

    color: var(--bp-dark);

    font-size: clamp(32px, 4vw, 47px);

    line-height: 1.12;

    letter-spacing: -1.3px;
}


.bp-web-section-heading h2 span {

    display: block;

    color: var(--bp-blue);
}


.bp-web-section-heading p {

    max-width: 680px;

    margin: auto;

    color: var(--bp-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   BUSINESS TYPES
========================================================= */

.bp-web-business-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.bp-web-business-card {

    padding: 27px 22px;

    background: #fff;

    border: 1px solid var(--bp-border);

    border-radius: 10px;

    transition: .3s ease;
}


.bp-web-business-card:hover {

    transform: translateY(-6px);

    border-color: rgba(13,110,253,.25);

    box-shadow:
        0 18px 40px rgba(13,110,253,.08);
}


.bp-web-business-icon {

    width: 49px;
    height: 49px;

    margin-bottom: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: var(--bp-blue);

    background:
        linear-gradient(
            135deg,
            #EEF8FF,
            #F8FBFF
        );

    font-size: 19px;
}


.bp-web-business-card h3 {

    margin: 0 0 8px;

    color: var(--bp-dark);

    font-size: 16px;
}


.bp-web-business-card p {

    margin: 0;

    color: var(--bp-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   PLATFORM
========================================================= */

.bp-web-platform-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.bp-web-platform-card {

    padding: 30px 25px;

    background: #fff;

    border: 1px solid var(--bp-border);

    border-radius: 11px;

    transition: .3s ease;
}


.bp-web-platform-card:hover {

    transform: translateY(-6px);

    border-color: rgba(13,110,253,.3);

    box-shadow:
        0 18px 40px rgba(13,110,253,.09);
}


.bp-web-platform-icon {

    width: 53px;
    height: 53px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: var(--bp-blue);

    background: var(--bp-light-blue);

    font-size: 24px;
}


.bp-web-platform-card h3 {

    margin: 0 0 9px;

    color: var(--bp-dark);

    font-size: 18px;
}


.bp-web-platform-card p {

    min-height: 58px;

    margin: 0 0 18px;

    color: var(--bp-muted);

    font-size: 10px;

    line-height: 1.7;
}


.bp-web-platform-card ul {

    margin: 0;

    padding: 0;

    list-style: none;
}


.bp-web-platform-card li {

    margin-bottom: 8px;

    padding-left: 16px;

    position: relative;

    color: #4B5563;

    font-size: 10px;
}


.bp-web-platform-card li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--bp-blue);

    font-weight: 800;
}


/* =========================================================
   SERVICES
========================================================= */

.bp-web-service-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.bp-web-service-card {

    padding: 27px 23px;

    background: #fff;

    border: 1px solid var(--bp-border);

    border-radius: 10px;

    transition: .3s ease;
}


.bp-web-service-card:hover {

    transform: translateY(-5px);

    border-color: rgba(13,110,253,.25);

    box-shadow:
        0 17px 35px rgba(13,110,253,.07);
}


.bp-web-service-card > i {

    margin-bottom: 17px;

    color: var(--bp-blue);

    font-size: 22px;
}


.bp-web-service-card h3 {

    margin: 0 0 9px;

    color: var(--bp-dark);

    font-size: 15px;
}


.bp-web-service-card p {

    margin: 0;

    color: var(--bp-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   DARK FEATURE SECTION
========================================================= */

.bp-web-dark-section {

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #08111F,
            #0E1C32
        );

    color: #fff;
}


.bp-web-feature-layout {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


.bp-web-feature-layout h2 {

    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(32px, 4vw, 47px);

    line-height: 1.12;
}


.bp-web-feature-layout h2 span {

    display: block;

    color: var(--bp-cyan);
}


.bp-web-feature-layout > div > p {

    max-width: 510px;

    margin: 0;

    color: #A9B7C9;

    font-size: 12px;

    line-height: 1.85;
}


.bp-web-feature-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;
}


.bp-web-feature-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 7px;

    background: rgba(255,255,255,.025);

    color: #D9E5F5;

    font-size: 10px;
}


.bp-web-feature-list i {

    color: var(--bp-cyan);
}


/* =========================================================
   PROCESS
========================================================= */

.bp-web-process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.bp-web-process-card {

    position: relative;

    padding: 30px 22px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--bp-border);

    border-radius: 11px;

    transition: .3s ease;
}


.bp-web-process-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(13,110,253,.08);
}


.bp-web-process-card > span {

    position: absolute;

    top: 15px;
    right: 17px;

    color: #DCE8F5;

    font-size: 22px;

    font-weight: 800;
}


.bp-web-process-card > i {

    width: 52px;
    height: 52px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--bp-blue);

    background: var(--bp-light-blue);

    font-size: 19px;
}


.bp-web-process-card h3 {

    margin: 0 0 9px;

    color: var(--bp-dark);

    font-size: 16px;
}


.bp-web-process-card p {

    margin: 0;

    color: var(--bp-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   PRICING
========================================================= */

.bp-web-pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}


.bp-web-price-card {

    position: relative;

    padding: 32px 27px;

    background: #fff;

    border: 1px solid var(--bp-border);

    border-radius: 11px;

    transition: .3s ease;
}


.bp-web-price-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(13,110,253,.08);
}


.bp-web-price-featured {

    border: 2px solid var(--bp-blue);

    box-shadow:
        0 18px 45px rgba(13,110,253,.12);
}


.bp-web-popular {

    position: absolute;

    top: 0;
    left: 50%;

    transform:
        translate(-50%, -50%);

    padding: 6px 13px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--bp-cyan),
            var(--bp-blue)
        );

    border-radius: 20px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .8px;

    white-space: nowrap;
}


.bp-web-price-top > span {

    color: var(--bp-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.bp-web-price-top h3 {

    margin: 9px 0 9px;

    color: var(--bp-dark);

    font-size: 21px;
}


.bp-web-price-top p {

    min-height: 54px;

    margin: 0;

    color: var(--bp-muted);

    font-size: 10px;

    line-height: 1.7;
}


.bp-web-price {

    margin: 23px 0;

    color: var(--bp-dark);

    font-size: 43px;

    line-height: 1;

    font-weight: 800;
}


.bp-web-price small {

    margin-right: 3px;

    color: var(--bp-muted);

    font-size: 9px;

    font-weight: 500;
}


.bp-web-price-card ul {

    margin: 0 0 25px;

    padding: 0;

    list-style: none;
}


.bp-web-price-card li {

    display: flex;

    gap: 8px;

    margin-bottom: 11px;

    color: #4B5563;

    font-size: 10px;
}


.bp-web-price-card li i {

    color: var(--bp-blue);

    margin-top: 2px;
}


.bp-web-price-btn {

    width: 100%;

    min-height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: var(--bp-blue);

    background: var(--bp-light-blue);

    border: 1px solid #D8E8F7;

    border-radius: 6px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    transition: .25s ease;
}


.bp-web-price-btn:hover {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--bp-cyan),
            var(--bp-blue)
        );

    border-color: transparent;
}


/* =========================================================
   CUSTOM PACKAGE
========================================================= */

.bp-web-custom-package {

    margin-top: 25px;

    padding: 21px 24px;

    display: flex;

    align-items: center;

    gap: 17px;

    border: 1px solid #DCE8F4;

    border-radius: 10px;

    background: var(--bp-light);
}


.bp-web-custom-package > i {

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    color: var(--bp-blue);

    background: #fff;

    font-size: 17px;
}


.bp-web-custom-package strong {

    color: var(--bp-dark);

    font-size: 12px;
}


.bp-web-custom-package p {

    margin: 4px 0 0;

    color: var(--bp-muted);

    font-size: 9px;

    line-height: 1.6;
}


.bp-web-custom-package a {

    margin-left: auto;

    flex: 0 0 auto;

    color: var(--bp-blue);

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================================
   WEBSITE TYPES
========================================================= */

.bp-web-type-list {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
}


.bp-web-type-list span {

    padding: 11px 17px;

    border: 1px solid #DCE7F2;

    border-radius: 30px;

    color: #4B5563;

    background: #fff;

    font-size: 10px;

    font-weight: 600;

    transition: .25s ease;
}


.bp-web-type-list span:hover {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--bp-cyan),
            var(--bp-blue)
        );

    border-color: transparent;

    transform: translateY(-2px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.bp-web-final-cta {

    position: relative;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #0876FF,
            #0D6EFD 50%,
            #00AEEF
        );

    overflow: hidden;
}


.bp-web-final-cta::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -150px;
    top: -200px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);
}


.bp-web-cta-content {

    position: relative;

    z-index: 2;

    max-width: 800px;
}


.bp-web-cta-content h2 {

    margin: 0 0 16px;

    color: #fff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.bp-web-cta-content h2 span {

    display: block;

    color: #D9F7FF;
}


.bp-web-cta-content > p {

    max-width: 650px;

    margin: 0 0 27px;

    color: rgba(255,255,255,.82);

    font-size: 12px;

    line-height: 1.8;
}


.bp-web-cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 11px;
}


.bp-web-btn-white {

    color: var(--bp-blue);

    background: #fff;
}


.bp-web-btn-white:hover {

    color: var(--bp-blue);

    transform: translateY(-3px);
}


.bp-web-btn-transparent {

    color: #fff;

    border: 1px solid rgba(255,255,255,.45);

    background: rgba(255,255,255,.08);
}


.bp-web-btn-transparent:hover {

    color: #fff;

    background: rgba(255,255,255,.15);

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .bp-web-hero-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .bp-web-hero-content {

        text-align: center;
    }


    .bp-web-hero-content > p {

        margin-left: auto;
        margin-right: auto;
    }


    .bp-web-hero-buttons,
    .bp-web-trust-row {

        justify-content: center;
    }


    .bp-web-hero-preview {

        max-width: 720px;

        width: 100%;

        margin: auto;
    }


    .bp-web-business-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .bp-web-platform-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .bp-web-service-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .bp-web-feature-layout {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .bp-web-process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .bp-web-pricing-grid {

        grid-template-columns: 1fr;

        max-width: 570px;

        margin: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .bp-web-container {

        width: calc(100% - 28px);
    }


    .bp-web-section {

        padding: 65px 0;
    }


    .bp-web-hero {

        padding: 55px 0 70px;
    }


    .bp-web-hero-content h1 {

        font-size: 39px;

        letter-spacing: -1.7px;
    }


    .bp-web-hero-content > p {

        font-size: 12px;
    }


    .bp-web-hero-buttons {

        flex-direction: column;
    }


    .bp-web-btn {

        width: 100%;
    }


    .bp-web-trust-row {

        flex-direction: column;

        align-items: center;

        gap: 9px;
    }


    .bp-browser-content {

        min-height: 320px;

        padding: 19px;
    }


    .bp-demo-nav {

        margin-bottom: 45px;
    }


    .bp-demo-card {

        display: none;
    }


    .bp-demo-main h3 {

        font-size: 24px;
    }


    .bp-web-floating-card {

        position: relative;

        left: auto;
        bottom: auto;

        width: fit-content;

        margin: 14px auto 0;
    }


    .bp-web-section-heading {

        margin-bottom: 35px;
    }


    .bp-web-section-heading h2 {

        font-size: 31px;
    }


    .bp-web-business-grid,
    .bp-web-platform-grid,
    .bp-web-service-grid {

        grid-template-columns: 1fr;
    }


    .bp-web-feature-list {

        grid-template-columns: 1fr;
    }


    .bp-web-process-grid {

        grid-template-columns: 1fr;
    }


    .bp-web-custom-package {

        align-items: flex-start;

        flex-wrap: wrap;
    }


    .bp-web-custom-package a {

        margin-left: 60px;
    }


    .bp-web-cta-content {

        text-align: center;
    }


    .bp-web-cta-content > p {

        margin-left: auto;
        margin-right: auto;
    }


    .bp-web-cta-buttons {

        flex-direction: column;
    }


    .bp-web-cta-buttons .bp-web-btn {

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bp-web-hero-content h1 {

        font-size: 34px;
    }


    .bp-web-browser {

        border-radius: 10px;
    }


    .bp-demo-main h3 {

        font-size: 21px;
    }


    .bp-web-price-card {

        padding: 28px 22px;
    }


    .bp-web-type-list span {

        width: 100%;

        text-align: center;
    }

}

/* =========================================================
   BARAKA PRINTERS
   CONTACT PAGE
   SAME BLUE CORPORATE THEME
========================================================= */

.bp-contact-page {

    --contact-blue: #0D6EFD;
    --contact-cyan: #00BFFF;
    --contact-dark: #111827;
    --contact-text: #374151;
    --contact-muted: #6B7280;

    --contact-light: #F8FBFF;
    --contact-light-blue: #EEF8FF;

    --contact-border: #E3EAF2;

    font-family: "Poppins", sans-serif;

    color: var(--contact-text);

    background: #fff;

    overflow: hidden;
}


.bp-contact-page *,
.bp-contact-page *::before,
.bp-contact-page *::after {
    box-sizing: border-box;
}


.bp-contact-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.bp-contact-hero {

    position: relative;

    padding: 95px 0 90px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0,191,255,.15),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #F8FBFF,
            #FFFFFF 55%,
            #EEF8FF
        );

    overflow: hidden;
}


.bp-contact-hero::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -170px;
    top: -180px;

    border-radius: 50%;

    background: rgba(13,110,253,.05);
}


.bp-contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: auto;

    text-align: center;
}


.bp-contact-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color: var(--contact-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.bp-contact-hero h1 {

    margin: 0 0 20px;

    color: var(--contact-dark);

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}


.bp-contact-hero h1 span {

    display: block;

    color: var(--contact-blue);
}


.bp-contact-hero p {

    max-width: 700px;

    margin: 0 auto 28px;

    color: var(--contact-muted);

    font-size: 13px;

    line-height: 1.85;
}


.bp-contact-hero-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


.bp-contact-btn {

    min-height: 49px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    transition: .25s ease;
}


.bp-contact-btn-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--contact-cyan),
            var(--contact-blue)
        );

    box-shadow:
        0 12px 28px rgba(13,110,253,.2);
}


.bp-contact-btn-primary:hover {

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(13,110,253,.3);
}


.bp-contact-btn-outline {

    color: var(--contact-blue);

    background: #fff;

    border: 1px solid #DCE6F1;
}


.bp-contact-btn-outline:hover {

    color: var(--contact-blue);

    border-color: var(--contact-blue);

    transform: translateY(-3px);
}


/* =========================================================
   CONTACT INFO
========================================================= */

.bp-contact-info-section {

    padding: 25px 0 85px;

    background:
        linear-gradient(
            180deg,
            #F8FBFF,
            #FFFFFF
        );
}


.bp-contact-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.bp-contact-info-card {

    display: flex;

    gap: 14px;

    padding: 22px 18px;

    color: inherit;

    background: #fff;

    border: 1px solid var(--contact-border);

    border-radius: 10px;

    text-decoration: none;

    transition: .3s ease;
}


.bp-contact-info-card:hover {

    color: inherit;

    transform: translateY(-5px);

    border-color: rgba(13,110,253,.25);

    box-shadow:
        0 18px 38px rgba(13,110,253,.08);
}


.bp-contact-info-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: var(--contact-blue);

    background: var(--contact-light-blue);

    font-size: 17px;
}


.bp-contact-info-card span {

    display: block;

    margin-bottom: 4px;

    color: var(--contact-blue);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.bp-contact-info-card h3 {

    margin: 0 0 7px;

    color: var(--contact-dark);

    font-size: 14px;
}


.bp-contact-info-card p {

    margin: 0 0 9px;

    color: var(--contact-muted);

    font-size: 9px;

    line-height: 1.65;
}


.bp-contact-info-card strong {

    color: var(--contact-blue);

    font-size: 8px;
}


.bp-contact-info-card strong i {

    margin-left: 4px;

    transition: .2s ease;
}


.bp-contact-info-card:hover strong i {

    transform: translateX(3px);
}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.bp-contact-main {

    padding: 90px 0;

    background: #fff;
}


.bp-contact-main-grid {

    display: grid;

    grid-template-columns:
        1.08fr .92fr;

    gap: 35px;

    align-items: start;
}


/* =========================================================
   FORM CARD
========================================================= */

.bp-contact-form-card {

    padding: 36px;

    background: #fff;

    border: 1px solid var(--contact-border);

    border-radius: 13px;

    box-shadow:
        0 18px 45px rgba(15,23,42,.06);
}


.bp-contact-section-title {

    margin-bottom: 28px;
}


.bp-contact-section-title h2 {

    margin: 0 0 12px;

    color: var(--contact-dark);

    font-size: 33px;

    line-height: 1.15;

    letter-spacing: -1px;
}


.bp-contact-section-title h2 span {

    color: var(--contact-blue);
}


.bp-contact-section-title p {

    max-width: 650px;

    margin: 0;

    color: var(--contact-muted);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   FORM
========================================================= */

.bp-contact-form {

    width: 100%;
}


.bp-form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.bp-form-group {

    margin-bottom: 17px;
}


.bp-form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--contact-dark);

    font-size: 9px;

    font-weight: 700;
}


.bp-form-group label span {

    color: #EF4444;
}


.bp-input-wrap {

    position: relative;
}


.bp-input-wrap > i {

    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #94A3B8;

    font-size: 11px;

    pointer-events: none;

    transition: .2s ease;
}


.bp-input-wrap input,
.bp-input-wrap select,
.bp-input-wrap textarea {

    width: 100%;

    border: 1px solid #DDE5EE;

    border-radius: 7px;

    outline: none;

    background: #F9FBFD;

    color: var(--contact-dark);

    font-family: inherit;

    font-size: 10px;

    transition: .25s ease;
}


.bp-input-wrap input,
.bp-input-wrap select {

    height: 46px;

    padding: 0 14px 0 38px;
}


.bp-input-wrap textarea {

    min-height: 135px;

    padding: 14px 14px 14px 38px;

    resize: vertical;

    line-height: 1.7;
}


.bp-input-wrap select {

    appearance: none;

    cursor: pointer;
}


.bp-input-wrap:focus-within > i {

    color: var(--contact-blue);
}


.bp-input-wrap input:focus,
.bp-input-wrap select:focus,
.bp-input-wrap textarea:focus {

    background: #fff;

    border-color: var(--contact-blue);

    box-shadow:
        0 0 0 3px rgba(13,110,253,.07);
}


.bp-textarea-wrap > i {

    top: 18px;

    transform: none;
}


.bp-form-bottom {

    margin-top: 5px;
}


.bp-contact-submit {

    width: 100%;

    min-height: 50px;

    border: 0;

    border-radius: 7px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--contact-cyan),
            var(--contact-blue)
        );

    cursor: pointer;

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    box-shadow:
        0 10px 25px rgba(13,110,253,.18);

    transition: .25s ease;
}


.bp-contact-submit:hover {

    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.25);
}


.bp-form-bottom p {

    margin: 11px 0 0;

    text-align: center;

    color: #94A3B8;

    font-size: 8px;
}


.bp-form-bottom p i {

    margin-right: 4px;

    color: var(--contact-blue);
}


/* =========================================================
   MAP
========================================================= */

.bp-contact-map-column {

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.bp-map-card {

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--contact-border);

    border-radius: 13px;

    box-shadow:
        0 18px 45px rgba(15,23,42,.06);
}


.bp-map-header {

    padding: 22px 23px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.bp-map-header span {

    display: block;

    margin-bottom: 4px;

    color: var(--contact-blue);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.bp-map-header h3 {

    margin: 0;

    color: var(--contact-dark);

    font-size: 18px;
}


.bp-map-header a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    color: var(--contact-blue);

    background: var(--contact-light-blue);

    border-radius: 6px;

    text-decoration: none;

    font-size: 8px;

    font-weight: 700;

    white-space: nowrap;
}


.bp-google-map {

    height: 340px;

    background: #EEF3F7;
}


.bp-google-map iframe {

    display: block;

    width: 100%;

    height: 100%;
}


.bp-map-address {

    padding: 19px 22px;

    display: flex;

    gap: 12px;

    align-items: center;
}


.bp-map-address-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    color: var(--contact-blue);

    background: var(--contact-light-blue);
}


.bp-map-address strong {

    display: block;

    margin-bottom: 3px;

    color: var(--contact-dark);

    font-size: 10px;
}


.bp-map-address p {

    margin: 0;

    color: var(--contact-muted);

    font-size: 9px;

    line-height: 1.6;
}


/* =========================================================
   QUICK CONTACT
========================================================= */

.bp-quick-contact {

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #F8FBFF,
            #EEF8FF
        );

    border: 1px solid #DCE9F5;
}


.bp-quick-contact-icon {

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    color: var(--contact-blue);

    background: #fff;

    font-size: 17px;
}


.bp-quick-contact span {

    display: block;

    color: var(--contact-blue);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}


.bp-quick-contact strong {

    display: block;

    margin-top: 2px;

    color: var(--contact-dark);

    font-size: 11px;
}


.bp-quick-contact p {

    margin: 3px 0 0;

    color: var(--contact-muted);

    font-size: 8px;
}


.bp-quick-contact > a {

    width: 38px;
    height: 38px;

    margin-left: auto;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--contact-cyan),
            var(--contact-blue)
        );

    border-radius: 50%;

    text-decoration: none;
}


/* =========================================================
   WHY SECTION
========================================================= */

.bp-contact-why {

    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #F8FBFF,
            #FFFFFF
        );
}


.bp-contact-centered {

    text-align: center;
}


.bp-contact-why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.bp-contact-why-card {

    padding: 28px 22px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--contact-border);

    border-radius: 10px;

    transition: .3s ease;
}


.bp-contact-why-card:hover {

    transform: translateY(-5px);

    border-color: rgba(13,110,253,.25);

    box-shadow:
        0 17px 35px rgba(13,110,253,.07);
}


.bp-contact-why-card > i {

    width: 48px;
    height: 48px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: var(--contact-blue);

    background: var(--contact-light-blue);

    font-size: 19px;
}


.bp-contact-why-card h3 {

    margin: 0 0 8px;

    color: var(--contact-dark);

    font-size: 14px;
}


.bp-contact-why-card p {

    margin: 0;

    color: var(--contact-muted);

    font-size: 9px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.bp-contact-final {

    padding: 75px 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0876FF,
            #0D6EFD 50%,
            #00AEEF
        );
}


.bp-contact-final-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.bp-contact-light-eyebrow {

    color: #C8F4FF;
}


.bp-contact-final h2 {

    margin: 0 0 12px;

    color: #fff;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1px;
}


.bp-contact-final h2 span {

    display: block;

    color: #D8F8FF;
}


.bp-contact-final p {

    max-width: 600px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 11px;

    line-height: 1.8;
}


.bp-contact-final-buttons {

    display: flex;

    flex-direction: column;

    gap: 10px;

    min-width: 230px;
}


.bp-contact-btn-white {

    color: var(--contact-blue);

    background: #fff;
}


.bp-contact-btn-white:hover {

    color: var(--contact-blue);

    transform: translateY(-2px);
}


.bp-contact-btn-whatsapp {

    color: #fff;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.35);
}


.bp-contact-btn-whatsapp:hover {

    color: #fff;

    background: rgba(255,255,255,.2);

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .bp-contact-info-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .bp-contact-main-grid {

        grid-template-columns: 1fr;
    }


    .bp-contact-map-column {

        display: grid;

        grid-template-columns: 1fr 1fr;

        align-items: start;
    }


    .bp-contact-why-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .bp-contact-container {

        width: calc(100% - 28px);
    }


    .bp-contact-hero {

        padding: 65px 0 70px;
    }


    .bp-contact-hero h1 {

        font-size: 39px;

        letter-spacing: -1.5px;
    }


    .bp-contact-hero p {

        font-size: 11px;
    }


    .bp-contact-hero-actions {

        flex-direction: column;
    }


    .bp-contact-hero-actions .bp-contact-btn {

        width: 100%;
    }


    .bp-contact-info-section {

        padding-bottom: 60px;
    }


    .bp-contact-info-grid {

        grid-template-columns: 1fr;
    }


    .bp-contact-main {

        padding: 65px 0;
    }


    .bp-contact-form-card {

        padding: 25px 18px;
    }


    .bp-contact-section-title h2 {

        font-size: 29px;
    }


    .bp-form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .bp-contact-map-column {

        display: flex;
    }


    .bp-google-map {

        height: 300px;
    }


    .bp-contact-why {

        padding: 65px 0;
    }


    .bp-contact-why-grid {

        grid-template-columns: 1fr;
    }


    .bp-contact-final {

        padding: 65px 0;
    }


    .bp-contact-final-inner {

        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }


    .bp-contact-final p {

        margin-left: auto;
        margin-right: auto;
    }


    .bp-contact-final-buttons {

        width: 100%;
    }

}


@media (max-width: 480px) {

    .bp-contact-hero h1 {

        font-size: 34px;
    }


    .bp-map-header {

        align-items: flex-start;

        flex-direction: column;
    }


    .bp-map-header a {

        width: 100%;

        justify-content: center;
    }


    .bp-google-map {

        height: 270px;
    }


    .bp-quick-contact {

        align-items: flex-start;
    }

}




