```css
/* =========================================
   GLOBAL
========================================= */

:root {
    --primary: #073b73;
    --primary-dark: #052b54;
    --accent: #0d8fe9;
    --text-dark: #10243e;
    --text-light: #ffffff;
    --border: #dce4ec;
}

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

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

a {
    text-decoration: none;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e8edf2;
    position: relative;
    z-index: 1000;
}

.site-header .navbar {
    min-height: 72px;
    padding: 8px 0;
}


/* Brand */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.brand-mark {
    width: 45px;
    height: 45px;

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

    background: var(--primary);
    color: #ffffff;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: -1px;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 80%,
        70% 100%,
        0 100%
    );
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text span {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-text strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.brand-text small {
    margin-top: 4px;

    font-size: 6px;
    font-weight: 600;

    letter-spacing: 1px;
    color: #718096;
}


/* Navigation */

.navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    position: relative;

    color: #172b45;

    font-size: 13px;
    font-weight: 500;

    padding: 12px 13px !important;

    transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link.active::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 4px;

    height: 2px;

    background: var(--accent);
}


/* Header Actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #172b45;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;
}

.header-phone i {
    color: var(--primary);
}


.btn {
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 15px;

    background: var(--primary);
    color: #ffffff;

    font-size: 11px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 14px;

    background: #159447;
    color: #ffffff;

    font-size: 11px;
}

.btn-whatsapp:hover {
    background: #117d3c;
    color: #ffffff;
}


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

.hero-section {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;

    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center right;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 25, 47, 0.97) 0%,
            rgba(3, 25, 47, 0.91) 36%,
            rgba(3, 25, 47, 0.40) 67%,
            rgba(3, 25, 47, 0.12) 100%
        );
}

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

.hero-content {
    padding: 55px 0;
}

.hero-label {
    margin-bottom: 12px;

    color: #d6e7f6;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.hero-content h1 {
    max-width: 650px;

    color: #ffffff;

    font-size: clamp(42px, 4.3vw, 62px);
    font-weight: 800;

    line-height: 1.04;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.hero-content h1 span {
    display: block;
    color: #159fe9;
}

.hero-description {
    max-width: 600px;

    color: #e4edf5;

    font-size: 15px;
    line-height: 1.6;

    margin-bottom: 27px;
}


/* Hero Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 35px;
}

.btn-hero-primary,
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 21px;

    font-size: 12px;
}

.btn-hero-primary {
    background: #087fe2;
    color: #ffffff;

    border: 1px solid #087fe2;
}

.btn-hero-primary:hover {
    background: #066fc6;
    color: #ffffff;
}

.btn-hero-outline {
    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: var(--primary);
}


/* Hero Features */

.hero-features {
    display: flex;
    align-items: center;
    gap: 22px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
}

.hero-feature i {
    font-size: 18px;
    color: #ffffff;
}

.hero-feature + .hero-feature {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .header-actions {
        gap: 6px;
    }

    .header-phone span {
        display: none;
    }

    .navbar-nav .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

}

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

.about-section {
    padding: 80px 0;
    background: #ffffff;
}


/* About Image */

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.about-image-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;

    padding: 14px 18px;

    background: rgba(5, 43, 84, 0.92);
    border-left: 3px solid #0d8fe9;

    color: #ffffff;

    display: flex;
    flex-direction: column;
}

.about-image-badge span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.about-image-badge strong {
    font-size: 20px;
    line-height: 1.05;
    font-weight: 800;
}


/* Section Label */

.section-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 9px;

    color: #087fe2;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.section-label::before {
    content: "";
    width: 18px;
    height: 2px;

    margin-right: 7px;

    background: #087fe2;
}


/* Section Heading */

.section-title {
    margin-bottom: 18px;

    color: #10243e;

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;

    line-height: 1.12;
    letter-spacing: -1.2px;
}

.section-title span {
    display: block;
    color: #073b73;
}


/* About Text */

.about-text {
    max-width: 700px;

    margin-bottom: 12px;

    color: #536274;

    font-size: 14px;
    line-height: 1.7;
}

.about-text strong {
    color: #25384f;
}


/* About Button */

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 8px;
    padding: 11px 18px;

    background: #073b73;
    border: 1px solid #073b73;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}

.btn-about:hover {
    background: #052b54;
    border-color: #052b54;
    color: #ffffff;
}


/* About Highlights */

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 25px;
}

.about-highlight {
    display: flex;
    align-items: center;

    gap: 10px;

    min-height: 72px;

    padding: 11px;

    border: 1px solid #e3e9ef;
    border-radius: 4px;

    background: #ffffff;

    transition: all 0.25s ease;
}

.about-highlight:hover {
    border-color: #cbd9e7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 36, 62, 0.07);
}

.highlight-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

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

    border-radius: 4px;

    background: #edf5fc;
    color: #073b73;

    font-size: 17px;
}

.about-highlight h4 {
    margin: 0 0 3px;

    color: #10243e;

    font-size: 12px;
    font-weight: 700;
}

.about-highlight p {
    margin: 0;

    color: #718096;

    font-size: 9px;
    line-height: 1.35;
}


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

@media (max-width: 991px) {

    .about-section {
        padding: 65px 0;
    }

    .about-image {
        height: 350px;
    }

}


@media (max-width: 575px) {

    .about-section {
        padding: 50px 0;
    }

    .about-image {
        height: 280px;
    }

    .section-title {
        font-size: 30px;
    }

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

}
@media (max-width: 991px) {

    .site-header .navbar {
        min-height: 68px;
    }

    .navbar-collapse {
        padding: 15px 0;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .header-actions {
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .header-phone span {
        display: inline;
    }

    .hero-section {
        min-height: 600px;
        background-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 25, 47, 0.94),
                rgba(3, 25, 47, 0.65)
            );
    }

}


@media (max-width: 575px) {

    .brand-text span,
    .brand-text strong {
        font-size: 13px;
    }

    .brand-text small {
        font-size: 5px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .header-actions a {
        justify-content: center;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-content {
        padding: 45px 0;
    }

    .hero-content h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-feature + .hero-feature {
        padding-left: 0;
        border-left: 0;
    }

}

/* =========================================
   PRODUCTS SECTION
========================================= */

.products-section {
    padding: 75px 0;
    background: #f5f8fb;
}

.products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
}

.products-heading .section-title {
    margin-bottom: 10px;
}

.section-description {
    max-width: 700px;

    margin: 0;

    color: #617083;

    font-size: 13px;
    line-height: 1.6;
}

.btn-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    flex-shrink: 0;

    padding: 11px 17px;

    background: #073b73;
    border: 1px solid #073b73;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
}

.btn-products:hover {
    background: #052b54;
    border-color: #052b54;
    color: #ffffff;
}


/* Product Card */

.product-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e8ef;
    border-radius: 5px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: #c9d8e7;

    box-shadow: 0 12px 28px rgba(16, 36, 62, 0.10);
}


/* Product Image */

.product-image {
    height: 155px;

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

    padding: 12px;

    background: #ffffff;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* Product Content */

.product-content {
    padding: 15px 13px 16px;

    text-align: center;
}

.product-content h3 {
    min-height: 34px;

    margin: 0 0 7px;

    color: #10243e;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.3;
}

.product-content p {
    min-height: 55px;

    margin: 0 0 12px;

    color: #68778a;

    font-size: 9.5px;
    line-height: 1.5;
}

.product-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    border: 1px solid #b8c8d8;
    border-radius: 3px;

    color: #073b73;

    font-size: 9px;
    font-weight: 700;

    transition: all 0.2s ease;
}

.product-content a:hover {
    background: #073b73;
    border-color: #073b73;
    color: #ffffff;
}


/* =========================================
   PRODUCTS RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .products-section {
        padding: 60px 0;
    }

    .products-heading {
        align-items: flex-start;
        gap: 20px;
    }

}


@media (max-width: 575px) {

    .products-section {
        padding: 50px 0;
    }

    .products-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image {
        height: 190px;
    }

    .product-content h3 {
        font-size: 14px;
    }

    .product-content p {
        font-size: 10px;
    }

}

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

.why-us-section {
    padding: 75px 0;
    background: #ffffff;
}

.why-us-heading {
    margin-bottom: 30px;
}

.why-us-heading .section-title {
    margin-bottom: 10px;
}

.why-card {
    position: relative;

    height: 100%;
    min-height: 135px;

    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 20px 18px;

    background: #ffffff;

    border: 1px solid #e1e8ef;
    border-radius: 5px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.why-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #087fe2;

    transition: width 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);

    border-color: #cbd9e7;

    box-shadow: 0 12px 28px rgba(16, 36, 62, 0.08);
}

.why-card:hover::after {
    width: 100%;
}


/* Icon */

.why-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

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

    background: #edf5fc;

    border-radius: 5px;

    color: #073b73;

    font-size: 19px;

    transition: all 0.25s ease;
}

.why-card:hover .why-icon {
    background: #073b73;
    color: #ffffff;
}


/* Content */

.why-content {
    position: relative;
    flex: 1;
}

.why-number {
    display: block;

    margin-bottom: 3px;

    color: #087fe2;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
}

.why-content h3 {
    margin: 0 0 7px;

    color: #10243e;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.3;
}

.why-content p {
    margin: 0;

    color: #68778a;

    font-size: 10px;

    line-height: 1.5;
}


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

@media (max-width: 575px) {

    .why-us-section {
        padding: 55px 0;
    }

    .why-card {
        min-height: auto;
    }

}

/* =========================================
   QUALITY & MANUFACTURING
========================================= */

.quality-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #f4f7fa 0%,
            #ffffff 60%,
            #f1f5f9 100%
        );
}


/* Image */

.quality-image-wrapper {
    position: relative;

    overflow: hidden;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(16, 36, 62, 0.12);
}

.quality-image {
    width: 100%;
    height: 430px;

    display: block;

    object-fit: cover;
}

.quality-image-overlay {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 14px 18px;

    background: rgba(5, 43, 84, 0.92);

    border-left: 3px solid #087fe2;

    color: #ffffff;

    display: flex;
    flex-direction: column;
}

.quality-image-overlay span {
    margin-bottom: 4px;

    color: #9ed7ff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.quality-image-overlay strong {
    font-size: 19px;
    line-height: 1.1;

    font-weight: 800;
}


/* Intro */

.quality-intro {
    max-width: 680px;

    margin: 0 0 25px;

    color: #5d6d80;

    font-size: 13px;
    line-height: 1.7;
}


/* Process */

.quality-process {
    margin-top: 10px;
}

.quality-step {
    position: relative;

    display: grid;

    grid-template-columns: 42px 1fr;

    column-gap: 16px;

    min-height: 82px;
}

.quality-step-number {
    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background: #073b73;
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    position: relative;
    z-index: 2;
}

.quality-step-line {
    position: absolute;

    top: 42px;
    left: 20px;

    width: 1px;
    height: 60px;

    background: #cbd8e5;
}

.quality-step:last-child .quality-step-line {
    display: none;
}

.quality-step-content {
    padding-bottom: 20px;
}

.quality-step-content h3 {
    margin: 1px 0 5px;

    color: #10243e;

    font-size: 14px;
    font-weight: 700;
}

.quality-step-content p {
    max-width: 560px;

    margin: 0;

    color: #68778a;

    font-size: 10px;
    line-height: 1.55;
}


/* Highlights */

.quality-highlights {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 10px;

    padding-top: 18px;

    border-top: 1px solid #dce4ec;
}

.quality-highlights span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #344a62;

    font-size: 10px;
    font-weight: 600;
}

.quality-highlights i {
    color: #087fe2;

    font-size: 13px;
}


/* =========================================
   QUALITY RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .quality-section {
        padding: 65px 0;
    }

    .quality-image {
        height: 360px;
    }

}


@media (max-width: 575px) {

    .quality-section {
        padding: 55px 0;
    }

    .quality-image {
        height: 280px;
    }

    .quality-highlights {
        gap: 12px;
    }

}

/* =========================================
   PRODUCT SHOWCASE
========================================= */

.showcase-section {
    padding: 75px 0;
    background: #ffffff;
}

.showcase-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
    margin-bottom: 30px;
}

.showcase-heading .section-title {
    margin-bottom: 10px;
}


/* Gallery */

.showcase-gallery {
    display: grid;

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

    grid-auto-rows: 230px;

    gap: 10px;
}


/* Gallery Item */

.showcase-item {
    position: relative;

    display: block;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border-radius: 4px;

    background: #e9eef3;
}

.showcase-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.showcase-item:hover img {
    transform: scale(1.06);
}


/* Remove previous spanning */

.showcase-large,
.showcase-wide {
    grid-column: auto;
    grid-row: auto;
}


/* Overlay */

.showcase-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 38px 18px 16px;

    background:
        linear-gradient(
            transparent,
            rgba(3, 25, 47, 0.90)
        );

    color: #ffffff;

    transform: translateY(4px);

    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay span {
    display: block;

    margin-bottom: 3px;

    color: #9ed7ff;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.showcase-overlay strong {
    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   SHOWCASE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .showcase-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

}


@media (max-width: 575px) {

    .showcase-section {
        padding: 55px 0;
    }

    .showcase-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

}

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

.final-cta-section {
    position: relative;

    padding: 52px 0;

    background:
        linear-gradient(
            100deg,
            #062c50 0%,
            #073b73 55%,
            #082d50 100%
        );

    overflow: hidden;
}

.final-cta-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -260px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.final-cta-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -250px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 25, 47, 0.25),
            transparent
        );
}

.final-cta-content {
    position: relative;
    z-index: 2;

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

    gap: 30px;
}

.cta-label {
    margin-bottom: 6px;

    color: #73c9ff;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.final-cta-text h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 800;

    line-height: 1.15;
}

.final-cta-text p {
    margin: 0;

    color: #d4e3ef;

    font-size: 11px;
    line-height: 1.5;
}


/* CTA Buttons */

.final-cta-buttons {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.btn-cta-primary,
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 11px 17px;

    font-size: 10px;
    font-weight: 700;

    white-space: nowrap;
}

.btn-cta-primary {
    background: #0b8ee8;

    border: 1px solid #0b8ee8;

    color: #ffffff;
}

.btn-cta-primary:hover {
    background: #087dcc;

    border-color: #087dcc;

    color: #ffffff;
}

.btn-cta-whatsapp {
    background: #159447;

    border: 1px solid #159447;

    color: #ffffff;
}

.btn-cta-whatsapp:hover {
    background: #117c3b;

    border-color: #117c3b;

    color: #ffffff;
}


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

.site-footer {
    background: #ffffff;
}


/* Footer Main */

.footer-main {
    display: grid;

    grid-template-columns:
        2.2fr
        1fr
        1.5fr
        0.7fr;

    gap: 45px;

    padding: 45px 0 38px;
}


/* Footer Brand */

.footer-brand {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

    color: #10243e;
}

.footer-brand-mark {
    width: 43px;
    height: 43px;

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

    background: #073b73;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 80%,
        70% 100%,
        0 100%
    );
}

.footer-brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.footer-brand-text span {
    font-size: 15px;
    font-weight: 700;
}

.footer-brand-text strong {
    font-size: 15px;
    font-weight: 800;
}

.footer-brand-text small {
    margin-top: 4px;

    color: #718096;

    font-size: 5px;
    font-weight: 600;

    letter-spacing: 1px;
}

.footer-company > p {
    max-width: 350px;

    margin: 0;

    color: #68778a;

    font-size: 10px;

    line-height: 1.6;
}


/* Footer Columns */

.footer-column h3 {
    margin: 3px 0 15px;

    color: #10243e;

    font-size: 12px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;

    color: #68778a;

    font-size: 10px;
}

.footer-column a {
    color: #68778a;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #087fe2;
}


/* Contact */

.footer-contact li {
    display: flex;
    align-items: flex-start;

    gap: 8px;
}

.footer-contact li i {
    flex: 0 0 13px;

    margin-top: 2px;

    color: #073b73;

    font-size: 11px;
}

.footer-contact li span {
    line-height: 1.45;
}


/* Social */

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;

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

    background: #edf5fc;

    border-radius: 4px;

    color: #073b73;

    font-size: 13px;

    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #073b73;
    color: #ffffff;
}


/* Footer Bottom */

.footer-bottom {
    background: #062c50;
}

.footer-bottom-inner {
    min-height: 42px;

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

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #b8c9d9;

    font-size: 9px;
}


/* =========================================
   CTA + FOOTER RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .final-cta-content {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px;
    }

}


@media (max-width: 575px) {

    .final-cta-section {
        padding: 45px 0;
    }

    .final-cta-text h2 {
        font-size: 25px;
    }

    .final-cta-buttons {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-buttons .btn {
        width: 100%;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 38px 0;
    }

    .footer-bottom-inner {
        padding: 12px 0;

        flex-direction: column;
        align-items: flex-start;

        gap: 5px;
    }

}

/* =========================================
   INNER PAGE HERO
========================================= */

.inner-page-hero {
    position: relative;

    min-height: 310px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            100deg,
            #062c50 0%,
            #073b73 55%,
            #0b527f 100%
        );

    overflow: hidden;
}

.inner-page-hero::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -150px;
    top: -180px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.inner-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,25,47,0.25),
            transparent
        );
}

.inner-page-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: 65px 0;
}

.inner-page-label {
    margin-bottom: 10px;

    color: #8ed3ff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.7px;
}

.inner-page-content h1 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(38px, 4.2vw, 56px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.7px;
}

.inner-page-content h1 span {
    display: block;

    color: #20a3ed;
}

.inner-page-content p {
    max-width: 650px;

    margin: 0;

    color: #dbe9f4;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   ABOUT PAGE INTRO
========================================= */

.about-page-intro {
    padding: 80px 0;

    background: #ffffff;
}

.about-page-image {
    position: relative;

    overflow: hidden;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(16,36,62,0.12);
}

.about-page-image img {
    width: 100%;
    height: 430px;

    display: block;

    object-fit: cover;
}

.about-page-badge {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 13px 17px;

    background: rgba(5,43,84,0.93);

    border-left: 3px solid #087fe2;

    color: #ffffff;

    display: flex;
    flex-direction: column;
}

.about-page-badge span {
    color: #9ed7ff;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.4px;

    margin-bottom: 3px;
}

.about-page-badge strong {
    font-size: 18px;
    line-height: 1.05;
}

.about-page-text {
    max-width: 700px;

    margin-bottom: 13px;

    color: #5f6f82;

    font-size: 13px;
    line-height: 1.75;
}

.about-page-text strong {
    color: #25384f;
}


/* About Stats */

.about-page-stats {
    display: grid;

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

    gap: 10px;

    margin-top: 25px;
}

.about-page-stats > div {
    display: flex;
    flex-direction: column;

    padding: 14px;

    border: 1px solid #e1e8ef;

    border-radius: 4px;

    background: #ffffff;
}

.about-page-stats i {
    margin-bottom: 9px;

    color: #087fe2;

    font-size: 18px;
}

.about-page-stats strong {
    color: #10243e;

    font-size: 12px;
}

.about-page-stats span {
    margin-top: 3px;

    color: #7a8898;

    font-size: 9px;
}


/* =========================================
   WHAT WE MANUFACTURE
========================================= */

.manufacture-section {
    padding: 75px 0;

    background: #f5f8fb;
}

.manufacture-heading {
    margin-bottom: 32px;
}

.manufacture-heading .section-title {
    margin-bottom: 10px;
}

.manufacture-card {
    height: 100%;

    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e1e8ef;

    border-radius: 5px;

    transition: all 0.25s ease;
}

.manufacture-card:hover {
    transform: translateY(-4px);

    border-color: #c9d8e7;

    box-shadow: 0 12px 25px rgba(16,36,62,0.08);
}

.manufacture-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

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

    background: #edf5fc;

    border-radius: 4px;

    color: #073b73;

    font-size: 18px;
}

.manufacture-card h3 {
    margin: 2px 0 6px;

    color: #10243e;

    font-size: 14px;
    font-weight: 700;
}

.manufacture-card p {
    margin: 0;

    color: #6b7a8c;

    font-size: 10px;
    line-height: 1.55;
}


/* =========================================
   COMMITMENT
========================================= */

.commitment-section {
    padding: 80px 0;

    background: #ffffff;
}

.commitment-text {
    max-width: 650px;

    margin-bottom: 13px;

    color: #5f6f82;

    font-size: 13px;
    line-height: 1.7;
}

.commitment-points {
    display: grid;

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

    gap: 12px;

    margin-top: 25px;
}

.commitment-points div {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #42566d;

    font-size: 10px;
    font-weight: 600;
}

.commitment-points i {
    color: #087fe2;

    font-size: 13px;
}

.commitment-image {
    overflow: hidden;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(16,36,62,0.12);
}

.commitment-image img {
    width: 100%;
    height: 390px;

    display: block;

    object-fit: cover;
}


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

.about-why-section {
    padding: 75px 0;

    background: #f5f8fb;
}

.about-why-heading {
    margin-bottom: 30px;
}

.about-why-card {
    height: 100%;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e1e8ef;

    border-radius: 5px;

    text-align: center;

    transition: all 0.25s ease;
}

.about-why-card:hover {
    transform: translateY(-4px);

    border-color: #c9d8e7;

    box-shadow: 0 12px 25px rgba(16,36,62,0.08);
}

.about-why-card > i {
    width: 45px;
    height: 45px;

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

    margin-bottom: 12px;

    background: #edf5fc;

    border-radius: 5px;

    color: #073b73;

    font-size: 19px;
}

.about-why-card h3 {
    margin: 0 0 7px;

    color: #10243e;

    font-size: 14px;
    font-weight: 700;
}

.about-why-card p {
    max-width: 230px;

    margin: 0 auto;

    color: #68778a;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================
   ABOUT PAGE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .inner-page-hero {
        min-height: 280px;
    }

    .about-page-intro,
    .commitment-section {
        padding: 65px 0;
    }

    .about-page-image img {
        height: 360px;
    }

    .commitment-image img {
        height: 350px;
    }

}


@media (max-width: 575px) {

    .inner-page-hero {
        min-height: 250px;
    }

    .inner-page-content {
        padding: 50px 0;
    }

    .inner-page-content h1 {
        font-size: 36px;
    }

    .inner-page-content p {
        font-size: 12px;
    }

    .about-page-intro,
    .manufacture-section,
    .commitment-section,
    .about-why-section {
        padding: 50px 0;
    }

    .about-page-image img {
        height: 280px;
    }

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

    .commitment-points {
        grid-template-columns: 1fr;
    }

    .commitment-image img {
        height: 280px;
    }

}

/* =========================================
   PRODUCTS PAGE
========================================= */

.products-page-intro {
    padding: 65px 0 35px;
    background: #ffffff;
}


/* Product Category */

.product-category-section {
    padding: 60px 0;

    background: #f5f8fb;
}

.product-category-alt {
    background: #ffffff;
}

.product-category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}

.product-category-heading h2 {
    margin: 0;

    color: #10243e;

    font-size: 30px;
    font-weight: 800;

    letter-spacing: -0.8px;
}

.product-category-heading p {
    max-width: 500px;

    margin: 0;

    color: #68778a;

    font-size: 11px;
    line-height: 1.6;
}


/* Product Detail Card */

.product-detail-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e8ef;
    border-radius: 5px;

    transition: all 0.25s ease;
}

.product-detail-card:hover {
    transform: translateY(-5px);

    border-color: #c9d8e7;

    box-shadow: 0 14px 30px rgba(16, 36, 62, 0.10);
}

.product-detail-image {
    height: 220px;

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

    padding: 15px;

    background: #ffffff;
}

.product-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.product-detail-card:hover
.product-detail-image img {
    transform: scale(1.04);
}


/* Product Content */

.product-detail-content {
    padding: 18px;
}

.product-code {
    display: block;

    margin-bottom: 6px;

    color: #087fe2;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.product-detail-content h3 {
    margin: 0 0 8px;

    color: #10243e;

    font-size: 17px;
    font-weight: 700;
}

.product-detail-content p {
    min-height: 45px;

    margin: 0 0 15px;

    color: #68778a;

    font-size: 10px;

    line-height: 1.55;
}

.product-detail-content a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #073b73;

    font-size: 10px;
    font-weight: 700;
}

.product-detail-content a:hover {
    color: #087fe2;
}


/* Product Range Banner */

.product-range-banner {
    height: 100%;

    min-height: 220px;

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

    gap: 25px;

    padding: 30px;

    background:
        linear-gradient(
            120deg,
            #062c50,
            #073b73
        );

    border-radius: 5px;

    color: #ffffff;
}

.product-range-banner span {
    display: block;

    margin-bottom: 8px;

    color: #83ceff;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.product-range-banner h3 {
    margin: 0 0 7px;

    font-size: 23px;
    font-weight: 800;
}

.product-range-banner p {
    margin: 0;

    color: #d4e3ef;

    font-size: 10px;
}


/* Complete Range */

.complete-range-section {
    padding: 75px 0;

    background: #ffffff;
}

.complete-range-image {
    overflow: hidden;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(16,36,62,0.10);
}

.complete-range-image img {
    width: 100%;
    height: 380px;

    display: block;

    object-fit: cover;
}

.complete-range-text {
    max-width: 600px;

    margin-bottom: 13px;

    color: #5f6f82;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   PRODUCTS PAGE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .product-category-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }

    .product-range-banner {
        min-height: 190px;
    }

}


@media (max-width: 575px) {

    .products-page-intro {
        padding: 50px 0 25px;
    }

    .product-category-section {
        padding: 50px 0;
    }

    .product-category-heading h2 {
        font-size: 27px;
    }

    .product-detail-image {
        height: 240px;
    }

    .product-range-banner {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        padding: 25px;
    }

    .complete-range-section {
        padding: 55px 0;
    }

    .complete-range-image img {
        height: 280px;
    }

}

/* =========================================
   QUALITY PAGE
========================================= */

.quality-page-intro {
    padding: 80px 0;

    background: #ffffff;
}

.quality-page-text {
    max-width: 650px;

    margin-bottom: 13px;

    color: #5f6f82;

    font-size: 13px;

    line-height: 1.75;
}


/* Quality Values */

.quality-values {
    display: grid;

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

    gap: 10px;

    margin-top: 25px;
}

.quality-values > div {
    display: flex;
    flex-direction: column;

    padding: 14px;

    border: 1px solid #e1e8ef;

    border-radius: 4px;

    background: #ffffff;
}

.quality-values i {
    margin-bottom: 9px;

    color: #087fe2;

    font-size: 18px;
}

.quality-values strong {
    color: #10243e;

    font-size: 11px;
}

.quality-values span {
    margin-top: 3px;

    color: #7a8898;

    font-size: 8px;
    line-height: 1.4;
}


/* Quality Image */

.quality-page-image {
    position: relative;

    overflow: hidden;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(16,36,62,0.12);
}

.quality-page-image img {
    width: 100%;
    height: 430px;

    display: block;

    object-fit: cover;
}

.quality-page-image-badge {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 13px 17px;

    background: rgba(5,43,84,0.93);

    border-left: 3px solid #087fe2;

    color: #ffffff;

    display: flex;
    flex-direction: column;
}

.quality-page-image-badge span {
    margin-bottom: 3px;

    color: #9ed7ff;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.quality-page-image-badge strong {
    font-size: 18px;
    line-height: 1.05;
}


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

.manufacturing-process-section {
    padding: 75px 0;

    background: #f5f8fb;
}

.manufacturing-heading {
    margin-bottom: 38px;
}

.manufacturing-heading .section-title {
    margin-bottom: 10px;
}


/* Process Timeline */

.process-timeline {
    position: relative;

    display: grid;

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

    gap: 20px;
}

.process-timeline::before {
    content: "";

    position: absolute;

    top: 27px;
    left: 11%;

    width: 78%;
    height: 1px;

    background: #cbd9e6;

    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;

    padding: 28px 20px 22px;

    background: #ffffff;

    border: 1px solid #e1e8ef;

    border-radius: 5px;

    text-align: center;

    transition: all 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);

    border-color: #c9d8e7;

    box-shadow: 0 12px 25px rgba(16,36,62,0.08);
}

.process-number {
    position: absolute;

    top: 14px;
    right: 14px;

    color: #b6c5d4;

    font-size: 8px;
    font-weight: 700;
}

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

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

    margin: 0 auto 18px;

    background: #073b73;

    border: 5px solid #edf5fc;

    border-radius: 50%;

    color: #ffffff;

    font-size: 18px;
}

.process-card h3 {
    margin: 0 0 8px;

    color: #10243e;

    font-size: 14px;
    font-weight: 700;
}

.process-card p {
    margin: 0;

    color: #68778a;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================
   INSPECTION
========================================= */

.inspection-section {
    padding: 80px 0;

    background: #ffffff;
}

.inspection-image {
    overflow: hidden;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(16,36,62,0.10);
}

.inspection-image img {
    width: 100%;
    height: 390px;

    display: block;

    object-fit: cover;
}

.inspection-text {
    max-width: 650px;

    margin-bottom: 22px;

    color: #5f6f82;

    font-size: 13px;

    line-height: 1.7;
}

.inspection-list {
    display: grid;

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

    gap: 16px 22px;
}

.inspection-list > div {
    display: flex;
    align-items: flex-start;

    gap: 9px;
}

.inspection-list > div > i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #087fe2;

    font-size: 13px;
}

.inspection-list strong {
    display: block;

    margin-bottom: 3px;

    color: #10243e;

    font-size: 11px;
}

.inspection-list span {
    display: block;

    color: #68778a;

    font-size: 9px;

    line-height: 1.45;
}


/* =========================================
   QUALITY COMMITMENT
========================================= */

.quality-commitment-section {
    padding: 0 0 75px;

    background: #ffffff;
}

.quality-commitment-box {
    display: flex;
    align-items: center;

    gap: 22px;

    padding: 30px 35px;

    background:
        linear-gradient(
            120deg,
            #062c50,
            #073b73
        );

    border-radius: 5px;

    overflow: hidden;

    position: relative;
}

.quality-commitment-box::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    top: -140px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.quality-commitment-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

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

    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 5px;

    color: #73c9ff;

    font-size: 24px;
}

.quality-commitment-content {
    position: relative;
    z-index: 2;
}

.quality-commitment-content .section-label {
    margin-bottom: 5px;

    color: #73c9ff;
}

.quality-commitment-content h2 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 800;
}

.quality-commitment-content h2 span {
    color: #20a3ed;
}

.quality-commitment-content p {
    margin: 0;

    color: #d4e3ef;

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================
   QUALITY PAGE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .quality-page-intro,
    .inspection-section {
        padding: 65px 0;
    }

    .quality-page-image img {
        height: 360px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .inspection-image img {
        height: 350px;
    }

}


@media (max-width: 575px) {

    .quality-page-intro,
    .manufacturing-process-section,
    .inspection-section {
        padding: 50px 0;
    }

    .quality-values {
        grid-template-columns: 1fr;
    }

    .quality-page-image img {
        height: 280px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .inspection-image img {
        height: 280px;
    }

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

    .quality-commitment-section {
        padding-bottom: 50px;
    }

    .quality-commitment-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 25px;
    }

    .quality-commitment-content h2 {
        font-size: 21px;
    }

}

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

.contact-main-section {
    padding: 80px 0;

    background: #ffffff;
}

.contact-intro-text {
    max-width: 520px;

    margin: 0 0 28px;

    color: #68778a;

    font-size: 12px;

    line-height: 1.7;
}


/* Contact Information */

.contact-info-card {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid #e5ebf1;
}

.contact-info-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

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

    background: #edf5fc;

    border-radius: 4px;

    color: #073b73;

    font-size: 15px;
}

.contact-info-card span {
    display: block;

    margin-bottom: 4px;

    color: #087fe2;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.1px;
}

.contact-info-card h3 {
    margin: 0 0 4px;

    color: #10243e;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;
}

.contact-info-card a {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #073b73;

    font-size: 9px;
    font-weight: 700;
}

.contact-info-card a:hover {
    color: #087fe2;
}


/* WhatsApp Box */

.contact-whatsapp-box {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 20px;

    padding: 15px;

    background: #f1faf5;

    border: 1px solid #d7efdf;

    border-radius: 5px;

    color: #163d2a;

    transition: all 0.2s ease;
}

.contact-whatsapp-box:hover {
    transform: translateY(-2px);

    border-color: #b9dfc6;
}

.contact-whatsapp-icon {
    width: 40px;
    height: 40px;

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

    background: #159447;

    border-radius: 50%;

    color: #ffffff;

    font-size: 17px;
}

.contact-whatsapp-box strong {
    display: block;

    margin-bottom: 3px;

    color: #163d2a;

    font-size: 11px;
}

.contact-whatsapp-box span {
    display: flex;
    align-items: center;

    gap: 5px;

    color: #4f7561;

    font-size: 9px;
}


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

.contact-form-box {
    padding: 30px;

    background: #f5f8fb;

    border: 1px solid #e1e8ef;

    border-radius: 5px;
}

.contact-form-header {
    margin-bottom: 22px;
}

.contact-form-header h2 {
    margin: 0 0 7px;

    color: #10243e;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.contact-form-header p {
    margin: 0;

    color: #68778a;

    font-size: 10px;
}


/* Form */

.contact-form label {
    display: block;

    margin-bottom: 6px;

    color: #25384f;

    font-size: 9px;
    font-weight: 700;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 40px;

    padding: 9px 11px;

    border: 1px solid #d8e1ea;

    border-radius: 4px;

    background: #ffffff;

    color: #25384f;

    font-family: inherit;

    font-size: 10px;

    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 115px;

    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: #a0acb8;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #168fe0;

    box-shadow: 0 0 0 2px rgba(22,143,224,0.08);
}


/* Submit */

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 19px;

    background: #073b73;

    border: 1px solid #073b73;

    border-radius: 4px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
}

.contact-submit-btn:hover {
    background: #062f5c;

    border-color: #062f5c;

    color: #ffffff;
}


/* =========================================
   QUICK ENQUIRY
========================================= */

.contact-quick-section {
    padding: 0 0 75px;

    background: #ffffff;
}

.contact-quick-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 32px;

    background: #edf5fc;

    border: 1px solid #dbe8f3;

    border-radius: 5px;
}

.contact-quick-box .section-label {
    margin-bottom: 4px;
}

.contact-quick-box h2 {
    margin: 0 0 5px;

    color: #10243e;

    font-size: 21px;
    font-weight: 800;
}

.contact-quick-box p {
    margin: 0;

    color: #68778a;

    font-size: 10px;
}


/* =========================================
   CONTACT PAGE RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .contact-main-section {
        padding: 65px 0;
    }

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

}


@media (max-width: 575px) {

    .contact-main-section {
        padding: 50px 0;
    }

    .contact-form-box {
        padding: 20px;
    }

    .contact-form-header h2 {
        font-size: 21px;
    }

    .contact-quick-section {
        padding-bottom: 50px;
    }

    .contact-quick-box {
        align-items: flex-start;

        flex-direction: column;

        padding: 24px;
    }

    .contact-quick-box .btn {
        width: 100%;
    }

}