:root {
    --ink: #173f35;
    --green: #2f6b57;
    --gold: #c59a48;
    --cream: #f7f3e8;
    --muted: #6b746f;
    --white: #fff;
}
* {
    box-sizing: border-box;
}
body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        sans-serif;
    color: #20312b;
    background: #fff;
    padding-top: 82px;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
}
a {
    text-decoration: none;
}
.site-nav {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 24px rgba(23, 63, 53, 0.08);
}
.navbar-brand img {
    width: 205px;
    height: 49px;
    object-fit: contain;
}
.nav-link {
    font-weight: 600;
    color: #385149 !important;
    margin: 0 0.25rem;
}
.nav-link.active,
.nav-link:hover {
    color: var(--gold) !important;
}
.btn-brand {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
    border-radius: 999px;
    padding: 0.72rem 1.3rem;
}
.btn-brand:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.btn-outline-brand {
    border: 1px solid var(--ink);
    color: var(--ink);
    border-radius: 999px;
    padding: 0.7rem 1.25rem;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--gold);
}
.section {
    padding: 90px 0;
}
.section-soft {
    background: var(--cream);
}
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}
.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 37, 29, 0.92), rgba(9, 37, 29, 0.58), rgba(9, 37, 29, 0.2));
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.98;
    color: #fff;
    max-width: 800px;
}
.hero p {
    font-size: 1.15rem;
    max-width: 650px;
    color: #e8eee9;
}
.stat {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}
.card-clean {
    border: 0;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(23, 63, 53, 0.09);
    overflow: hidden;
    height: 100%;
    background: #fff;
}
.product-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}
.product-card .card-body {
    padding: 1.4rem;
}
.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: #e7efe9;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--green);
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: 0.35s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:after {
    content: "View";
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #fff;
    color: var(--ink);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}
.testimonial {
    padding: 2rem;
}
.stars {
    color: var(--gold);
    letter-spacing: 0.2rem;
}
.page-hero {
    padding: 95px 0 70px;
    background: linear-gradient(135deg, var(--ink), #285c4d);
    color: #fff;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}
.value-card {
    padding: 2rem;
    border-radius: 22px;
    background: #fff;
    height: 100%;
    box-shadow: 0 10px 30px rgba(23, 63, 53, 0.08);
}
.contact-card {
    padding: 2rem;
    border-radius: 22px;
    background: var(--cream);
    height: 100%;
}
.contact-card a {
    color: var(--ink);
}
.map {
    border: 0;
    width: 100%;
    height: 420px;
    border-radius: 22px;
}
.footer {
    background: #102f27;
    color: #cdd9d3;
    padding: 65px 0 25px;
}
.footer-logo {
    width: 220px;
    filter: brightness(1.12);
}
.footer h6 {
    color: #fff;
}
.footer a {
    display: block;
    color: #d8e1dc;
    margin: 0.45rem 0;
}
.footer hr {
    border-color: #466158;
    margin: 2rem 0;
}
.modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}
.modal-header,
.modal-footer {
    border: 0;
    padding: 1.5rem;
}
.modal-body {
    padding: 0 1.5rem 1rem;
}
.form-control {
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border-color: #d8dfdc;
}
.form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(47, 107, 87, 0.12);
}
label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.mission-band {
    background: var(--ink);
    color: #fff;
    border-radius: 28px;
    padding: 3rem;
}
.mission-band h3 {
    color: #fff;
}
.filter-btn.active {
    background: var(--ink);
    color: #fff;
}
.badge-soft {
    background: #e7efe9;
    color: var(--ink);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 991px) {
    body {
        padding-top: 74px;
    }
    .section {
        padding: 65px 0;
    }
    .hero {
        min-height: 580px;
    }
    .navbar-brand img {
        width: 175px;
    }
    .site-nav .navbar-collapse {
        padding: 1rem 0;
    }
    .hero h1 {
        font-size: 3.2rem;
    }
}
/* start header section */
/* =========================================
   TOP HEADER
========================================= */

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;

    background: #173f35;
    color: #ffffff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.top-header-inner {
    min-height: 42px;

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

    gap: 20px;
}


.top-contact {
    display: flex;
    align-items: center;
    gap: 22px;
}


.top-contact a,
.top-location {
    color: rgba(255, 255, 255, 0.88);

    text-decoration: none;

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

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

    gap: 7px;

    transition: 0.3s ease;
}


.top-contact a:hover {
    color: #ffffff;
}


.top-contact i {
    font-size: 12px;
}


.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
}


.follow-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);

    margin-right: 5px;
}


.top-social a {
    width: 27px;
    height: 27px;

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

    border-radius: 50%;

    color: #ffffff;

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

    text-decoration: none;

    font-size: 12px;

    transition: all 0.3s ease;
}


.top-social a:hover {
    background: #ffffff;
    color: #10233f;

    transform: translateY(-2px);
}


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

.site-nav {
    top: 42px;
    padding:0 !important;
    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(16, 35, 63, 0.08);

    transition: all 0.3s ease;
}


.site-nav .container {
    min-height: 78px;
}


.navbar-brand img {
    width: 120px;
    height: auto;

    display: block;
}


.navbar-nav {
    gap: 5px;
}


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

    color: #25344d;

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

    padding: 28px 15px !important;

    transition: all 0.3s ease;
}


.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: #c49442;
}


.site-nav .nav-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 17px;

    height: 2px;

    background: #c49442;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}


.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================
   GET IN TOUCH BUTTON
========================================= */

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

    padding: 11px 20px;

    border-radius: 6px;

    background: #c49442;
    color: #ffffff;

    border: 1px solid #c49442;

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

    text-decoration: none;

    transition: all 0.3s ease;
}


.btn-brand:hover {
    background: #10233f;
    border-color: #10233f;

    color: #ffffff;

    transform: translateY(-2px);
}


.btn-brand i {
    font-size: 11px;
}


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

@media (max-width: 991.98px) {

    .top-header {
        position: fixed;
    }


    .top-header-inner {
        min-height: 38px;

        justify-content: center;
    }


    .top-contact {
        gap: 15px;
    }


    .top-contact a,
    .top-location {
        font-size: 11px;
    }


    .top-location {
        display: none;
    }


    .follow-text {
        display: none;
    }


    .top-social {
        display: none;
    }


    .site-nav {
        top: 38px;
    }


    .site-nav .container {
        min-height: 68px;
    }


    .navbar-brand img {
        width: 125px;
    }


    .navbar-toggler {
        border: 0;
        padding: 6px;
    }


    .navbar-toggler:focus {
        box-shadow: none;
    }


    .navbar-collapse {
        background: #ffffff;

        margin-top: 10px;

        padding: 15px;

        border-radius: 10px;

        box-shadow: 0 10px 30px rgba(16, 35, 63, 0.10);
    }


    .site-nav .nav-link {
        padding: 10px 5px !important;
    }


    .site-nav .nav-link::after {
        display: none;
    }


    .btn-brand {
        width: 100%;
    }

}


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

@media (max-width: 575.98px) {

    .top-contact {
        justify-content: center;
        width: 100%;
    }


    .top-contact a {
        font-size: 10px;
    }


    .site-nav {
        top: 38px;
    }


    .navbar-brand img {
        width: 115px;
    }

}
/* end header section */


/* start slider section */
/* =========================================
   HERO SECTION
========================================= */

.hero {
    position: relative;
    min-height: 720px;
    height: 88vh;
    max-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #173f35;
}

/* Hero Image */

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Professional Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(23, 63, 53, 0.96) 0%,
            rgba(23, 63, 53, 0.82) 38%,
            rgba(23, 63, 53, 0.45) 68%,
            rgba(23, 63, 53, 0.20) 100%
        );
}

/* Hero Content */

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Eyebrow */

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #c49442;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero .eyebrow::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #c49442;
}

/* Heading */

.hero h1 {
    max-width: 850px;

    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;

    margin-bottom: 0;
}

.hero h1 span {
    color: #c49442;
}

/* Description */

.hero p {
    max-width: 690px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 17px;
    line-height: 1.8;
}

/* Buttons */

.hero .btn {
    min-height: 52px;

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

    font-weight: 600;
}

/* Statistics */

.hero-stats {
    max-width: 700px;
}

.hero .stat {
    padding-left: 18px;
    border-left: 2px solid rgba(196, 148, 66, 0.8);
}

.hero .stat strong {
    display: block;

    color: #fff;

    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.hero .stat span {
    display: block;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


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

@media (max-width: 991px) {

    .hero {
        min-height: 680px;
        height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(23, 63, 53, 0.94),
                rgba(23, 63, 53, 0.62)
            );
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(42px, 7vw, 62px);
    }

}


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

@media (max-width: 767px) {

    .hero {
        min-height: 680px;
        height: auto;
    }

    .hero-image {
        object-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(23, 63, 53, 0.88),
                rgba(23, 63, 53, 0.96)
            );
    }

    .hero-content {
        padding-top: 110px;
        padding-bottom: 55px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero .btn {
        width: 100%;
    }

    .hero-stats {
        margin-top: 35px !important;
    }

    .hero .stat {
        padding-left: 12px;
    }

    .hero .stat strong {
        font-size: 21px;
    }

    .hero .stat span {
        font-size: 11px;
        letter-spacing: 0.6px;
    }

}
/* end slider section */

/* start about home section */
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}


/* Eyebrow */

.about-eyebrow {
    color: #c49442;
}


/* Heading */

.about-title {
    max-width: 620px;

    color: #173f35;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.about-title span {
    color: #c49442;
}


/* Paragraph */

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

    color: #68736f;

    font-size: 16px;
    line-height: 1.85;
}

.about-text strong {
    color: #173f35;
}


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

.about-highlights {
    max-width: 650px;
}

.about-highlight {
    height: 100%;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px;

    background: #f7f8f6;

    border: 1px solid rgba(23, 63, 53, 0.08);
    border-radius: 14px;

    transition: all 0.3s ease;
}

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

    background: #fff;

    border-color: rgba(196, 148, 66, 0.35);

    box-shadow: 0 12px 35px rgba(23, 63, 53, 0.08);
}


.about-highlight-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

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

    color: #c49442;

    background: rgba(196, 148, 66, 0.12);

    border-radius: 12px;

    font-size: 17px;
}


.about-highlight strong {
    display: block;

    color: #173f35;

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


.about-highlight span {
    display: block;

    margin-top: 3px;

    color: #7a827f;

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


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

.about-visual {
    position: relative;

    min-height: 570px;

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


/* Image */

.about-image-wrap {
    position: relative;

    width: 82%;
    height: 500px;

    overflow: hidden;

    border-radius: 30px 30px 30px 8px;

    box-shadow:
        0 25px 60px rgba(23, 63, 53, 0.15);
}

.about-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(23, 63, 53, 0.25)
        );
}


.about-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.about-image-wrap:hover .about-image {
    transform: scale(1.04);
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.experience-card {
    position: absolute;

    top: 45px;
    right: 0;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 185px;

    padding: 17px 20px;

    background: #173f35;

    color: #fff;

    border-radius: 14px;

    box-shadow:
        0 15px 35px rgba(23, 63, 53, 0.25);
}


.experience-number {
    color: #c49442;

    font-size: 38px;
    line-height: 1;

    font-weight: 700;
}


.experience-content strong {
    display: block;

    font-size: 14px;
}


.experience-content span {
    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;
}


/* =========================================
   GOLD ACCENT
========================================= */

.about-accent {
    position: absolute;

    left: 2%;
    bottom: 20px;

    width: 110px;
    height: 110px;

    border: 12px solid #c49442;

    border-radius: 50%;

    opacity: 0.9;
}


/* =========================================
   APPROACH CARD
========================================= */

.approach-card {
    position: absolute;

    left: 0;
    bottom: 45px;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 14px;

    max-width: 290px;

    padding: 18px 20px;

    background: #fff;

    border-radius: 15px;

    box-shadow:
        0 18px 45px rgba(23, 63, 53, 0.15);

    border-left: 4px solid #c49442;
}


.approach-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

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

    color: #c49442;

    background: rgba(196, 148, 66, 0.12);

    border-radius: 50%;
}


.approach-card span {
    display: block;

    margin-bottom: 3px;

    color: #c49442;

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

    text-transform: uppercase;
    letter-spacing: 1.3px;
}


.approach-card strong {
    display: block;

    color: #173f35;

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


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

@media (max-width: 991px) {

    .about-visual {
        min-height: 540px;
        margin-top: 20px;
    }

    .about-image-wrap {
        width: 85%;
        height: 470px;
    }

    .experience-card {
        right: 2%;
    }

    .approach-card {
        left: 2%;
    }

}


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

@media (max-width: 767px) {

    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-title {
        font-size: 38px;
        line-height: 1.12;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-visual {
        min-height: 470px;
        margin-top: 20px;
    }

    .about-image-wrap {
        width: 88%;
        height: 400px;

        border-radius: 22px 22px 22px 6px;
    }

    .experience-card {
        top: 20px;
        right: 0;

        min-width: 165px;

        padding: 13px 15px;
    }

    .experience-number {
        font-size: 31px;
    }

    .experience-content strong {
        font-size: 12px;
    }

    .experience-content span {
        font-size: 10px;
    }

    .approach-card {
        left: 0;
        bottom: 15px;

        max-width: 260px;

        padding: 14px 15px;
    }

    .approach-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .about-accent {
        width: 75px;
        height: 75px;

        border-width: 8px;

        left: 1%;
        bottom: 5px;
    }

}
/* end about home section */


/* start product section */
/* =========================================
   PRODUCT RANGE
========================================= */

.product-range-section {
    position: relative;
    overflow: hidden;
}


/* =========================================
   SECTION HEADING
========================================= */

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

    gap: 30px;

    margin-bottom: 45px;
}


.product-section-title {
    max-width: 650px;

    margin-top: 10px;
    margin-bottom: 12px;

    color: #173f35;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
}


.product-section-title span {
    color: #c49442;
}


.product-section-description {
    max-width: 600px;

    margin: 0;

    color: #6f7975;

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


.product-view-all {
    flex-shrink: 0;

    white-space: nowrap;
}


/* =========================================
   PRODUCT CARD
========================================= */

.product-box {
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid rgba(23, 63, 53, 0.08);

    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(23, 63, 53, 0.05);

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


.product-box:hover {
    transform: translateY(-8px);

    border-color: rgba(196, 148, 66, 0.35);

    box-shadow:
        0 20px 45px rgba(23, 63, 53, 0.12);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.product-image {
    position: relative;

    height: 285px;

    overflow: hidden;

    background: #edf0ed;
}


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

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.product-box:hover .product-image img {
    transform: scale(1.07);
}


/* =========================================
   CATEGORY BADGE
========================================= */

.product-category {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    padding: 7px 12px;

    color: #fff;

    background: #173f35;

    border-radius: 50px;

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

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   IMAGE OVERLAY
========================================= */

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

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

    padding-bottom: 20px;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(23, 63, 53, 0.72)
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}


.product-box:hover .product-overlay {
    opacity: 1;
}


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

    padding: 10px 17px;

    color: #173f35;

    background: #fff;

    border: 0;
    border-radius: 50px;

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

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: all 0.25s ease;
}


.product-quick-btn:hover {
    color: #fff;
    background: #c49442;
}


/* =========================================
   PRODUCT INFORMATION
========================================= */

.product-info {
    position: relative;

    padding: 22px 22px 24px;
}


.product-number {
    display: block;

    margin-bottom: 8px;

    color: #c49442;

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

    letter-spacing: 1.5px;
}


.product-info h3 {
    min-height: 48px;

    margin: 0;

    color: #173f35;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}


.product-info p {
    min-height: 46px;

    margin: 10px 0 17px;

    color: #7a837f;

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


/* =========================================
   ENQUIRE LINK
========================================= */

.product-enquire-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 0;

    color: #173f35;

    background: transparent;

    border: 0;

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

    cursor: pointer;

    transition: color 0.25s ease;
}


.product-enquire-link i {
    color: #c49442;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}


.product-enquire-link:hover {
    color: #c49442;
}


.product-enquire-link:hover i {
    color: #c49442;

    transform: translateX(4px);
}


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

@media (max-width: 991px) {

    .product-section-heading {
        align-items: flex-start;
    }

    .product-image {
        height: 260px;
    }

}


@media (max-width: 767px) {

    .product-section-heading {
        display: block;

        margin-bottom: 30px;
    }

    .product-section-title {
        font-size: 36px;
    }

    .product-section-description {
        font-size: 14px;
    }

    .product-view-all {
        display: none;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h3 {
        min-height: auto;
    }

    .product-info p {
        min-height: auto;
    }

    /* Always show enquiry button on mobile */

    .product-overlay {
        opacity: 1;

        padding-bottom: 15px;

        background:
            linear-gradient(
                180deg,
                transparent 55%,
                rgba(23, 63, 53, 0.65)
            );
    }

}
/* end product section */


/* start why choose us section */
/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    position: relative;
    overflow: hidden;

    background: #f7f8f6;
}


/* =========================================
   HEADING
========================================= */

.why-title {
    color: #173f35;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -1px;
}


.why-title span {
    color: #c49442;
}


.why-description {
    max-width: 680px;

    margin: 15px auto 0;

    color: #727c78;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   WHY CARD
========================================= */

.why-card {
    position: relative;

    height: 100%;

    padding: 28px 25px 27px;

    background: #fff;

    border: 1px solid rgba(23, 63, 53, 0.08);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(23, 63, 53, 0.04);

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


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

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #c49442;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}


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

    border-color: rgba(196, 148, 66, 0.3);

    box-shadow:
        0 20px 45px rgba(23, 63, 53, 0.10);
}


.why-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   CARD TOP
========================================= */

.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}


.why-number {
    color: #c49442;

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

    letter-spacing: 2px;
}


.why-icon {
    width: 52px;
    height: 52px;

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

    color: #c49442;

    background: rgba(196, 148, 66, 0.10);

    border: 1px solid rgba(196, 148, 66, 0.16);

    border-radius: 14px;

    font-size: 19px;

    transition: all 0.3s ease;
}


.why-card:hover .why-icon {
    color: #fff;

    background: #173f35;

    border-color: #173f35;

    transform: rotate(-5deg);
}


/* =========================================
   GOLD LINE
========================================= */

.why-line {
    width: 35px;
    height: 2px;

    margin-bottom: 17px;

    background: #c49442;
}


/* =========================================
   CARD CONTENT
========================================= */

.why-card h3 {
    margin-bottom: 11px;

    color: #173f35;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}


.why-card p {
    min-height: 100px;

    margin-bottom: 20px;

    color: #737d79;

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


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

.why-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #173f35;

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

    text-transform: uppercase;
    letter-spacing: 1px;
}


.why-link::after {
    content: "→";

    color: #c49442;

    font-size: 16px;

    transition: transform 0.25s ease;
}


.why-card:hover .why-link::after {
    transform: translateX(4px);
}


/* =========================================
   BOTTOM TRUST STRIP
========================================= */

.why-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 25px;

    background: #173f35;

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(23, 63, 53, 0.12);
}


.why-bottom-content {
    display: flex;
    align-items: center;

    gap: 15px;
}


.why-bottom-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

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

    color: #c49442;

    background: rgba(196, 148, 66, 0.12);

    border: 1px solid rgba(196, 148, 66, 0.25);

    border-radius: 50%;
}


.why-bottom strong {
    display: block;

    color: #fff;

    font-size: 15px;
}


.why-bottom span {
    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
}


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

@media (max-width: 767px) {

    .why-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .why-title {
        font-size: 36px;
    }

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

    .why-card {
        padding: 23px 21px;
    }

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

    .why-bottom {
        display: block;

        padding: 22px;
    }

    .why-bottom-content {
        margin-bottom: 20px;
    }

    .why-bottom .btn {
        width: 100%;
    }

}
/* end why choose us section */



/* start gallery home section */
/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
    position: relative;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.gallery-title {
    color: #173f35;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -1px;
}


.gallery-title span {
    color: #c49442;
}


.gallery-description {
    max-width: 650px;

    margin: 15px 0 0;

    color: #747d79;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   GALLERY CARD
========================================= */

.gallery-card {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #173f35;

    border-radius: 20px;

    cursor: pointer;
}


.gallery-large {
    height: 440px;
}


.gallery-small {
    height: 440px;
}


.gallery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.gallery-card:hover img {
    transform: scale(1.07);

    filter: brightness(0.82);
}


/* =========================================
   OVERLAY
========================================= */

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

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

    padding: 28px;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(23, 63, 53, 0.88) 100%
        );

    transition: background 0.35s ease;
}


.gallery-card:hover .gallery-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(23, 63, 53, 0.12),
            rgba(23, 63, 53, 0.92)
        );
}


/* =========================================
   GALLERY CONTENT
========================================= */

.gallery-content span {
    display: inline-block;

    margin-bottom: 7px;

    color: #c49442;

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

    text-transform: uppercase;
    letter-spacing: 1.7px;
}


.gallery-content h3 {
    margin: 0;

    color: #fff;

    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}


/* =========================================
   VIEW BUTTON
========================================= */

.gallery-view {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

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

    color: #173f35;

    background: #fff;

    border: 0;
    border-radius: 50%;

    font-size: 14px;

    opacity: 0;
    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.gallery-card:hover .gallery-view {
    opacity: 1;

    transform: translateY(0);
}


.gallery-view:hover {
    color: #fff;

    background: #c49442;
}


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

.gallery-cta {
    min-height: 440px;

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

    gap: 30px;

    padding: 45px;

    background: #173f35;

    border-radius: 20px;

    overflow: hidden;

    position: relative;
}


.gallery-cta::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -80px;
    bottom: -100px;

    border: 35px solid rgba(196, 148, 66, 0.15);

    border-radius: 50%;
}


.gallery-cta .eyebrow {
    color: #c49442;
}


.gallery-cta h3 {
    max-width: 470px;

    margin: 13px 0;

    color: #fff;

    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 700;
}


.gallery-cta p {
    max-width: 500px;

    margin: 0;

    color: rgba(255, 255, 255, 0.62);

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


.gallery-cta-btn {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

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

    color: #173f35;

    background: #c49442;

    border-radius: 50%;

    text-decoration: none;

    font-size: 18px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.gallery-cta-btn:hover {
    color: #173f35;

    background: #fff;

    transform: translateX(5px);
}


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

@media (max-width: 991px) {

    .gallery-large,
    .gallery-small {
        height: 380px;
    }

    .gallery-cta {
        min-height: 380px;

        padding: 35px;
    }

}


@media (max-width: 767px) {

    .gallery-title {
        font-size: 36px;
    }

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

    .gallery-large,
    .gallery-small {
        height: 330px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-content h3 {
        font-size: 20px;
    }

    /* Always show button on mobile */

    .gallery-view {
        opacity: 1;
        transform: translateY(0);

        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .gallery-cta {
        min-height: 330px;

        display: block;

        padding: 30px;
    }

    .gallery-cta h3 {
        font-size: 30px;
    }

    .gallery-cta-btn {
        margin-top: 25px;
    }

}
/* end gallery home section */


/* start footer section */
/* =========================================
   PROFESSIONAL FOOTER
========================================= */

.site-footer {
    position: relative;

    color: rgba(255, 255, 255, 0.68);

    background: #173f35;

    overflow: hidden;
}


/* Decorative Background */

.site-footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(196, 148, 66, 0.10);

    border-radius: 50%;

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -120px;

    border: 1px solid rgba(196, 148, 66, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


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

.footer-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.7fr
        0.8fr
        1fr
        1.5fr;

    gap: 55px;

    padding: 75px 0 55px;
}


/* =========================================
   COMPANY
========================================= */

.footer-brand {
    display: inline-block;

    text-decoration: none;
}


.footer-logo {
    width: 190px;
    max-width: 100%;

    display: block;
}


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

    margin: 22px 0 25px;

    color: rgba(255, 255, 255, 0.62);

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


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;
    align-items: center;

    gap: 9px;
}


.footer-social a {
    width: 38px;
    height: 38px;

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

    color: rgba(255, 255, 255, 0.75);

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

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

    border-radius: 50%;

    text-decoration: none;

    font-size: 13px;

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


.footer-social a:hover {
    color: #173f35;

    background: #c49442;

    border-color: #c49442;

    transform: translateY(-3px);
}


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

.footer-links h6,
.footer-contact h6 {
    position: relative;

    margin: 0 0 22px;

    color: #fff;

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

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.footer-links h6::after,
.footer-contact h6::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 9px;

    background: #c49442;
}


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

.footer-links {
    display: flex;
    flex-direction: column;
}


.footer-links a {
    width: fit-content;

    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.62);

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-links a:hover {
    color: #c49442;

    transform: translateX(4px);
}


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

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}


.footer-contact-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

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

    color: #c49442;

    background: rgba(196, 148, 66, 0.10);

    border: 1px solid rgba(196, 148, 66, 0.16);

    border-radius: 9px;

    font-size: 12px;
}


.footer-contact-item span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.42);

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

    text-transform: uppercase;
    letter-spacing: 1px;
}


.footer-contact-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

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


.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    font-size: 13px;

    transition: color 0.25s ease;
}


.footer-contact-item a:hover {
    color: #c49442;
}


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

.footer-cta {
    position: relative;
    z-index: 2;

    display: flex;

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

    gap: 25px;

    padding: 25px 30px;

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

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

    border-radius: 16px;

    backdrop-filter: blur(8px);
}


.footer-cta span {
    display: block;

    margin-bottom: 5px;

    color: #c49442;

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

    letter-spacing: 1.8px;
}


.footer-cta h3 {
    margin: 0;

    color: #fff;

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


.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 20px;

    color: #173f35;

    background: #c49442;

    border-radius: 50px;

    text-decoration: none;

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

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.footer-cta-btn:hover {
    color: #173f35;

    background: #fff;

    transform: translateY(-2px);
}


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

.footer-bottom {
    position: relative;
    z-index: 2;

    margin-top: 55px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
}


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

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

    gap: 20px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
}


.footer-bottom strong {
    color: rgba(255, 255, 255, 0.72);
}


.footer-bottom b {
    color: #c49442;

    font-weight: 600;
}


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

@media (max-width: 991px) {

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

        gap: 40px;
    }

    .footer-company {
        grid-column: span 3;
    }

}


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

@media (max-width: 767px) {

    .footer-main {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

        padding: 55px 0 40px;
    }

    .footer-company {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-logo {
        width: 165px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-cta {
        display: block;

        padding: 23px;
    }

    .footer-cta h3 {
        font-size: 18px;
    }

    .footer-cta-btn {
        width: 100%;

        margin-top: 18px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-bottom-inner {
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

        line-height: 1.6;
    }

}
/* end footer section */


/* start breadcrumb section */
.page-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(23, 63, 53, 0.96) 0%,
            rgba(23, 63, 53, 0.82) 40%,
            rgba(23, 63, 53, 0.52) 70%,
            rgba(23, 63, 53, 0.35) 100%
        ),
        url("../img/b1.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    padding: 150px 0 80px;
}

/* Subtle gold decorative effect */
.page-hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -100px;
    bottom: -180px;

    border: 1px solid rgba(196, 148, 66, 0.25);
    border-radius: 50%;

    pointer-events: none;
}

/* Content above overlay */
.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #c49442;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero .eyebrow::before {
    content: "";

    width: 35px;
    height: 1px;

    background: #c49442;
}

.page-hero h1 {
    max-width: 850px;
    margin-top: 18px;

    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.page-hero p {
    margin-top: 22px;

    font-size: 17px;
    line-height: 1.8;
}

/* Mobile */
@media (max-width: 767px) {

    .page-hero {
        min-height: 430px;
        padding: 130px 0 70px;

        background-image:
            linear-gradient(
                90deg,
                rgba(23, 63, 53, 0.94),
                rgba(23, 63, 53, 0.68)
            ),
            url("../img/b1.png");

        background-position: center;
    }

    .page-hero h1 {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* end readcrumb section */

/* start about section */
/* =========================================
   OUR STORY SECTION
========================================= */

.story-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.story-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -240px;
    top: 80px;
    border: 1px solid rgba(23, 63, 53, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

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

.story-eyebrow {
    color: #c49442;
}

.story-title {
    max-width: 650px;
    margin: 15px 0 25px;

    color: #173f35;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.4px;
}

.story-title span {
    color: #c49442;
}

.story-intro {
    max-width: 650px;
    margin-bottom: 18px;

    color: #173f35;
    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
}

.story-text {
    max-width: 650px;
    margin-bottom: 15px;

    color: #68736f;
    font-size: 15px;
    line-height: 1.85;
}

.story-text strong {
    color: #173f35;
    font-weight: 700;
}


/* Highlights */

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px;
}

.story-highlight {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 18px;

    background: #f7f8f5;
    border: 1px solid rgba(23, 63, 53, 0.08);
    border-radius: 12px;

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

.story-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 148, 66, 0.35);
    box-shadow: 0 12px 30px rgba(23, 63, 53, 0.08);
}

.story-highlight-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

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

    color: #c49442;
    background: rgba(196, 148, 66, 0.10);
    border: 1px solid rgba(196, 148, 66, 0.18);
    border-radius: 10px;
}

.story-highlight strong {
    display: block;
    margin-bottom: 4px;

    color: #173f35;
    font-size: 13px;
    font-weight: 700;
}

.story-highlight span {
    display: block;

    color: #78817e;
    font-size: 11px;
    line-height: 1.6;
}

.story-button {
    margin-top: 30px;
}


/* =========================================
   COMPANY PANEL
========================================= */

.company-panel {
    position: relative;

    padding: 35px;

    background: #173f35;
    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(23, 63, 53, 0.16);
}

.company-panel::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    top: -170px;
    right: -120px;

    border: 1px solid rgba(196, 148, 66, 0.20);
    border-radius: 50%;
}

.company-panel::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -110px;
    left: -90px;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
}


/* Panel Header */

.company-panel-header {
    position: relative;
    z-index: 2;

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

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.company-panel-label {
    display: block;
    margin-bottom: 7px;

    color: #c49442;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.company-panel-header h3 {
    margin: 0;

    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.company-panel-icon {
    width: 52px;
    height: 52px;

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

    color: #c49442;
    background: rgba(196, 148, 66, 0.10);
    border: 1px solid rgba(196, 148, 66, 0.22);
    border-radius: 13px;

    font-size: 18px;
}


/* Details */

.company-details {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;

    margin-top: 10px;
}

.company-detail {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 24px 10px;

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

.company-detail:nth-child(odd) {
    padding-left: 0;
    padding-right: 20px;

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

.company-detail:nth-child(even) {
    padding-left: 20px;
}

.company-detail-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

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

    color: #c49442;

    background: rgba(255,255,255,0.055);
    border-radius: 10px;

    font-size: 13px;
}

.company-detail-content span {
    display: block;
    margin-bottom: 4px;

    color: rgba(255,255,255,0.42);

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.company-detail-content strong {
    display: block;

    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* Panel Footer */

.company-panel-footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 25px;
    padding: 18px;

    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.company-panel-footer-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

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

    color: #173f35;
    background: #c49442;
    border-radius: 10px;

    font-size: 13px;
}

.company-panel-footer strong {
    display: block;
    margin-bottom: 4px;

    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.company-panel-footer span {
    display: block;

    color: rgba(255,255,255,0.52);
    font-size: 11px;
    line-height: 1.5;
}


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

@media (max-width: 991px) {

    .story-title {
        max-width: 700px;
    }

    .company-panel {
        margin-top: 10px;
    }
}


@media (max-width: 767px) {

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

    .story-title {
        font-size: 40px;
        letter-spacing: -0.8px;
    }

    .story-intro {
        font-size: 17px;
    }

    .story-text {
        font-size: 14px;
    }

    .company-panel {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .company-panel-header h3 {
        font-size: 24px;
    }

    .company-details {
        grid-template-columns: 1fr;
    }

    .company-detail,
    .company-detail:nth-child(odd),
    .company-detail:nth-child(even) {
        padding: 18px 0;
        border-right: 0;
    }

    .company-detail:last-child {
        border-bottom: 0;
    }

    .company-panel-footer {
        align-items: flex-start;
    }
}


@media (max-width: 480px) {

    .story-title {
        font-size: 35px;
    }

    .story-highlight {
        padding: 15px;
    }

    .company-panel-header {
        align-items: flex-start;
    }

    .company-panel-icon {
        width: 45px;
        height: 45px;
    }
}
/* end about section */

/* start mission vision section */
/* =========================================
   MISSION & VISION
========================================= */

.mission-vision-section {
    position: relative;
    overflow: hidden;
    background: #f7f8f5;
}

.mission-vision-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -180px;

    border: 1px solid rgba(196, 148, 66, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.mv-section-title {
    margin-bottom: 15px;

    color: #173f35;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.mv-section-title span {
    color: #c49442;
}

.mv-section-description {
    max-width: 680px;
    margin: 0 auto;

    color: #707a76;
    font-size: 15px;
    line-height: 1.8;
}


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

.mv-card {
    position: relative;

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

    display: flex;
    flex-direction: column;

    padding: 35px;

    background: #fff;
    border: 1px solid rgba(23, 63, 53, 0.08);
    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(23, 63, 53, 0.05);

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

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

    border-color: rgba(196, 148, 66, 0.30);

    box-shadow:
        0 20px 50px rgba(23, 63, 53, 0.10);
}


/* Decorative background */

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

    position: absolute;

    width: 190px;
    height: 190px;

    right: -95px;
    bottom: -95px;

    border: 1px solid rgba(196, 148, 66, 0.14);
    border-radius: 50%;

    transition: transform .4s ease;
}

.mv-card:hover::after {
    transform: scale(1.2);
}


/* =========================================
   CARD TOP
========================================= */

.mv-card-top {
    position: relative;
    z-index: 2;

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

    margin-bottom: 30px;
}

.mv-icon {
    width: 58px;
    height: 58px;

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

    color: #c49442;

    background: rgba(196, 148, 66, 0.10);

    border: 1px solid rgba(196, 148, 66, 0.18);
    border-radius: 14px;

    font-size: 20px;
}

.mv-number {
    color: rgba(23, 63, 53, 0.12);

    font-size: 48px;
    line-height: 1;
    font-weight: 700;
}


/* =========================================
   CONTENT
========================================= */

.mv-content {
    position: relative;
    z-index: 2;

    flex: 1;
}

.mv-label {
    display: block;

    margin-bottom: 12px;

    color: #c49442;

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

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.mv-content h3 {
    max-width: 520px;

    margin: 0 0 18px;

    color: #173f35;

    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.2;

    font-weight: 700;
    letter-spacing: -0.5px;
}

.mv-content h3 span {
    color: #c49442;
}

.mv-content p {
    max-width: 560px;

    margin: 0;

    color: #6e7975;

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


/* =========================================
   BOTTOM
========================================= */

.mv-bottom {
    position: relative;
    z-index: 2;

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

    margin-top: 30px;
    padding-top: 18px;

    border-top: 1px solid rgba(23, 63, 53, 0.08);
}

.mv-bottom span {
    color: #8a928f;

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

    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-bottom i {
    width: 34px;
    height: 34px;

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

    color: #173f35;

    background: #c49442;

    border-radius: 50%;

    font-size: 11px;

    transition:
        transform .25s ease,
        background .25s ease;
}

.mv-card:hover .mv-bottom i {
    transform: rotate(45deg);
    background: #173f35;
    color: #fff;
}


/* =========================================
   MISSION CARD ACCENT
========================================= */

.mission-card {
    border-top: 3px solid #c49442;
}


/* =========================================
   VISION CARD
========================================= */

.vision-card {
    background: #173f35;
    border-color: #173f35;
}

.vision-card .mv-number {
    color: rgba(255,255,255,0.10);
}

.vision-card .mv-content h3 {
    color: #fff;
}

.vision-card .mv-content p {
    color: rgba(255,255,255,0.65);
}

.vision-card .mv-bottom {
    border-color: rgba(255,255,255,0.10);
}

.vision-card .mv-bottom span {
    color: rgba(255,255,255,0.42);
}

.vision-card .mv-bottom i {
    color: #173f35;
}

.vision-card .mv-icon {
    background: rgba(196, 148, 66, 0.12);
    border-color: rgba(196, 148, 66, 0.22);
}


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

@media (max-width: 991px) {

    .mv-card {
        min-height: 360px;
    }

    .mv-content h3 {
        font-size: 29px;
    }
}


@media (max-width: 767px) {

    .mv-section-title {
        font-size: 38px;
    }

    .mv-section-description {
        font-size: 14px;
    }

    .mv-card {
        min-height: auto;
        padding: 27px;
    }

    .mv-card-top {
        margin-bottom: 25px;
    }

    .mv-icon {
        width: 52px;
        height: 52px;
    }

    .mv-number {
        font-size: 40px;
    }

    .mv-content h3 {
        font-size: 27px;
    }

    .mv-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .mv-bottom {
        margin-top: 25px;
    }
}


@media (max-width: 480px) {

    .mv-card {
        padding: 23px;
        border-radius: 15px;
    }

    .mv-section-title {
        font-size: 34px;
    }

    .mv-content h3 {
        font-size: 25px;
    }

    .mv-bottom span {
        font-size: 9px;
        letter-spacing: .7px;
    }
}
/* end mission vision section */

/* start product section */
/* =========================================
   PROFESSIONAL PRODUCTS SECTION
========================================= */

.products-list-section {
    position: relative;
    overflow: hidden;
}

.products-list-title {
    color: #173f35;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.products-list-title span {
    color: #c49442;
}

.products-list-description {
    max-width: 700px;
    margin: 18px auto 0;

    color: #707a76;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   PRODUCT CARD
========================================= */

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

    background: #fff;
    border: 1px solid rgba(23, 63, 53, 0.08);
    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(23, 63, 53, 0.045);

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

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

    border-color: rgba(196, 148, 66, 0.28);

    box-shadow:
        0 20px 45px rgba(23, 63, 53, 0.11);
}


/* =========================================
   IMAGE
========================================= */

.professional-product-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #edf0ec;
}

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

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;
}

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


/* Image overlay */

.professional-product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(23,63,53,0.05) 20%,
            rgba(23,63,53,0.55) 100%
        );

    opacity: .75;

    pointer-events: none;
}


/* Number */

.professional-product-number {
    position: absolute;
    z-index: 3;

    top: 17px;
    left: 17px;

    color: #fff;

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

    letter-spacing: 1px;

    background: rgba(23,63,53,0.88);

    padding: 7px 10px;

    border-radius: 6px;
}


/* Category */

.professional-product-category {
    position: absolute;
    z-index: 3;

    top: 17px;
    right: 17px;

    padding: 7px 12px;

    color: #173f35;
    background: #c49442;

    border-radius: 30px;

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

    text-transform: uppercase;
    letter-spacing: .8px;
}


/* =========================================
   IMAGE HOVER BUTTON
========================================= */

.professional-product-overlay {
    position: absolute;
    z-index: 4;

    inset: 0;

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

    opacity: 0;

    background: rgba(23,63,53,0.38);

    transition: opacity .3s ease;
}

.professional-product-card:hover
.professional-product-overlay {
    opacity: 1;
}

.product-quick-enquire {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    color: #173f35;
    background: #fff;

    border: 0;
    border-radius: 50px;

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

    cursor: pointer;

    transform: translateY(10px);

    transition:
        transform .3s ease,
        background .25s ease;
}

.professional-product-card:hover
.product-quick-enquire {
    transform: translateY(0);
}

.product-quick-enquire:hover {
    color: #173f35;
    background: #c49442;
}


/* =========================================
   CONTENT
========================================= */

.professional-product-content {
    padding: 25px 24px 24px;
}

.professional-product-label {
    display: block;

    margin-bottom: 9px;

    color: #c49442;

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

    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.professional-product-content h3 {
    margin: 0 0 11px;

    color: #173f35;

    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.professional-product-content p {
    min-height: 70px;

    margin: 0;

    color: #707a76;

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


/* =========================================
   PRODUCT LINK
========================================= */

.professional-product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;
    padding: 0;

    color: #173f35;

    background: transparent;
    border: 0;

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

    cursor: pointer;

    transition: color .25s ease;
}

.professional-product-link i {
    transition: transform .25s ease;
}

.professional-product-link:hover {
    color: #c49442;
}

.professional-product-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM REQUIREMENT BOX
========================================= */

.products-bottom-note {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 55px;
    padding: 25px 28px;

    background: #173f35;

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(23,63,53,0.12);
}

.products-bottom-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

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

    color: #173f35;
    background: #c49442;

    border-radius: 12px;

    font-size: 18px;
}

.products-bottom-note > div:nth-child(2) {
    flex: 1;
}

.products-bottom-note strong {
    display: block;

    margin-bottom: 5px;

    color: #fff;

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

.products-bottom-note span {
    display: block;

    color: rgba(255,255,255,0.55);

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


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

@media (max-width: 991px) {

    .professional-product-image {
        height: 250px;
    }

    .products-bottom-note {
        flex-wrap: wrap;
    }

    .products-bottom-note .btn {
        margin-left: 66px;
    }
}


@media (max-width: 767px) {

    .products-list-title {
        font-size: 38px;
    }

    .products-list-description {
        font-size: 14px;
    }

    .professional-product-image {
        height: 250px;
    }

    .professional-product-content {
        padding: 22px 20px;
    }

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

    .professional-product-content p {
        min-height: auto;
    }

    /* Show enquire button on mobile */
    .professional-product-overlay {
        opacity: 1;

        background: linear-gradient(
            180deg,
            transparent 45%,
            rgba(23,63,53,0.45)
        );

        align-items: flex-end;
        justify-content: flex-start;

        padding: 15px;
    }

    .product-quick-enquire {
        transform: none;
    }

    .products-bottom-note {
        display: block;
        padding: 22px;
    }

    .products-bottom-icon {
        margin-bottom: 15px;
    }

    .products-bottom-note .btn {
        width: 100%;
        margin: 18px 0 0;
    }
}


@media (max-width: 480px) {

    .products-list-title {
        font-size: 34px;
    }

    .professional-product-image {
        height: 230px;
    }

    .professional-product-number {
        top: 12px;
        left: 12px;
    }

    .professional-product-category {
        top: 12px;
        right: 12px;
    }
}
/* end product section */

/* start contact section */
/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: #fff;
    overflow: hidden;
}

.contact-section-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #173f35;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.contact-section-title span {
    color: #c49442;
}

.contact-section-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: #68746f;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFORMATION CARD
========================================================= */

.contact-info-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 38px;
    color: rgba(255,255,255,.72);
    background: #173f35;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(23,63,53,.12);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -190px;
    right: -140px;
    border: 1px solid rgba(196,148,66,.20);
    border-radius: 50%;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -150px;
    left: -100px;
    border: 1px solid rgba(196,148,66,.12);
    border-radius: 50%;
}

.contact-info-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.contact-card-label {
    display: block;
    margin-bottom: 10px;
    color: #c49442;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contact-info-header h3 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
}

.contact-info-header h3 span {
    color: #c49442;
}

.contact-company-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49442;
    background: rgba(196,148,66,.10);
    border: 1px solid rgba(196,148,66,.20);
    border-radius: 14px;
    font-size: 19px;
}

.contact-info-intro {
    position: relative;
    z-index: 2;
    margin: 25px 0 28px;
    padding-bottom: 25px;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255,255,255,.10);
}


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

.contact-detail {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49442;
    background: rgba(196,148,66,.09);
    border: 1px solid rgba(196,148,66,.15);
    border-radius: 11px;
    font-size: 13px;
}

.contact-detail-content {
    min-width: 0;
}

.contact-detail-content span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.40);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-detail-content strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.contact-detail-content small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.43);
    font-size: 11px;
}

.contact-detail-content a {
    display: inline-block;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    text-decoration: none;
    transition: color .25s ease;
}

.contact-detail-content a:hover {
    color: #c49442;
}

.contact-detail-content p {
    margin: 0;
    color: rgba(255,255,255,.70);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT INFO FOOTER
========================================================= */

.contact-info-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
}

.contact-footer-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #173f35;
    background: #c49442;
    border-radius: 10px;
    font-size: 12px;
}

.contact-info-footer strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.contact-info-footer span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
}


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

.contact-form-card {
    height: 100%;
    padding: 38px;
    background: #fff;
    border: 1px solid #e7ebe8;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(23,63,53,.07);
}

.contact-form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #edf0ee;
}

.contact-form-header h3 {
    margin: 0;
    color: #173f35;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-form-header h3 span {
    color: #c49442;
}

.contact-form-header p {
    max-width: 570px;
    margin: 10px 0 0;
    color: #74807b;
    font-size: 13px;
    line-height: 1.7;
}

.contact-form-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49442;
    background: rgba(196,148,66,.09);
    border: 1px solid rgba(196,148,66,.16);
    border-radius: 14px;
    font-size: 17px;
}


/* =========================================================
   FORM INPUTS
========================================================= */

.contact-form-label {
    display: block;
    margin-bottom: 8px;
    color: #31443d;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.contact-input-wrap {
    position: relative;
}

.contact-input-wrap > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    color: #9aa6a1;
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color .25s ease;
}

.contact-input-wrap .form-control {
    min-height: 52px;
    padding: 13px 15px 13px 43px;
    color: #263a33;
    background: #f8faf9;
    border: 1px solid #e4eae7;
    border-radius: 11px;
    font-size: 13px;
    box-shadow: none;
    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.contact-input-wrap textarea.form-control {
    min-height: 145px;
    padding-top: 15px;
    resize: vertical;
}

.contact-input-wrap textarea.form-control + i {
    top: 18px;
    transform: none;
}

.contact-input-wrap .form-control::placeholder {
    color: #a3ada9;
}

.contact-input-wrap .form-control:focus {
    background: #fff;
    border-color: #c49442;
    box-shadow: 0 0 0 4px rgba(196,148,66,.09);
}

.contact-input-wrap:focus-within > i {
    color: #c49442;
}


/* =========================================================
   SUBMIT AREA
========================================================= */

.contact-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px;
}

.contact-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #89938f;
    font-size: 10px;
    line-height: 1.5;
}

.contact-form-note i {
    color: #c49442;
    font-size: 12px;
}

.contact-submit-btn {
    min-height: 50px;
    padding: 0 24px;
    white-space: nowrap;
}


/* =========================================================
   MAP SECTION
========================================================= */

.contact-map-wrapper {
    margin-top: 55px;
    padding: 30px;
    background: #f5f7f5;
    border: 1px solid #e5eae7;
    border-radius: 22px;
}

.contact-map-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.contact-map-heading h3 {
    margin: 0;
    color: #173f35;
    font-size: 25px;
    font-weight: 700;
}

.contact-map-heading h3 span {
    color: #c49442;
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    color: #173f35;
    background: #fff;
    border: 1px solid #dfe6e2;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.map-direction-btn:hover {
    color: #173f35;
    background: #c49442;
    border-color: #c49442;
    transform: translateY(-2px);
}

.contact-map {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #dfe5e1;
    border-radius: 16px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(.15);
}


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

@media (max-width: 991px) {

    .contact-info-card,
    .contact-form-card {
        height: auto;
    }

    .contact-map-wrapper {
        margin-top: 40px;
    }

}

@media (max-width: 767px) {

    .contact-section-title {
        font-size: 38px;
        letter-spacing: -.7px;
    }

    .contact-section-description {
        font-size: 14px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 27px 22px;
        border-radius: 17px;
    }

    .contact-info-header h3 {
        font-size: 23px;
    }

    .contact-company-icon,
    .contact-form-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        border-radius: 11px;
    }

    .contact-form-header {
        gap: 12px;
    }

    .contact-form-header h3 {
        font-size: 25px;
    }

    .contact-submit-row {
        display: block;
    }

    .contact-form-note {
        margin-bottom: 15px;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-map-wrapper {
        padding: 18px;
        border-radius: 17px;
    }

    .contact-map-heading {
        display: block;
    }

    .contact-map-heading h3 {
        font-size: 22px;
    }

    .map-direction-btn {
        margin-top: 15px;
    }

    .contact-map {
        height: 320px;
        border-radius: 12px;
    }

}

@media (max-width: 480px) {

    .contact-info-header {
        align-items: flex-start;
    }

    .contact-info-header h3 {
        font-size: 21px;
    }

    .contact-detail {
        gap: 11px;
    }

    .contact-detail-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .contact-input-wrap .form-control {
        min-height: 49px;
    }

    .contact-map {
        height: 280px;
    }

}
/* end contact  section */

/* start modal section */
/* =========================================================
   PROFESSIONAL ENQUIRY MODAL
========================================================= */

.enquiry-modal {
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}


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

.enquiry-modal-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 32px;
    color: #fff;
    background: #173f35;
    overflow: hidden;
}

.enquiry-modal-header::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -160px;
    right: -80px;
    border: 1px solid rgba(196,148,66,.20);
    border-radius: 50%;
}

.enquiry-modal-header::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    bottom: -120px;
    left: 25%;
    border: 1px solid rgba(196,148,66,.10);
    border-radius: 50%;
}

.enquiry-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.enquiry-header-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #173f35;
    background: #c49442;
    border-radius: 14px;
    font-size: 17px;
}

.enquiry-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #c49442;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.enquiry-modal-title {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
}

.enquiry-modal-subtitle {
    margin: 7px 0 0;
    color: rgba(255,255,255,.60);
    font-size: 12px;
    line-height: 1.6;
}

.enquiry-close {
    position: relative;
    z-index: 3;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    font-size: 13px;
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.enquiry-close:hover {
    color: #173f35;
    background: #c49442;
    transform: rotate(90deg);
}


/* =========================================================
   MODAL BODY
========================================================= */

.enquiry-modal-body {
    padding: 32px;
    background: #fff;
}


/* =========================================================
   FORM LABEL
========================================================= */

.enquiry-form-label {
    display: block;
    margin-bottom: 8px;
    color: #30423b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
}


/* =========================================================
   INPUT
========================================================= */

.enquiry-input {
    position: relative;
}

.enquiry-input > i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 16px;
    color: #9aa6a1;
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color .25s ease;
}

.enquiry-input .form-control {
    min-height: 51px;
    padding: 12px 15px 12px 43px;
    color: #263a33;
    background: #f8faf9;
    border: 1px solid #e3e9e6;
    border-radius: 11px;
    box-shadow: none;
    font-size: 13px;
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.enquiry-input .form-control::placeholder {
    color: #a5afab;
}

.enquiry-input .form-control:hover {
    border-color: #d4ddd8;
}

.enquiry-input .form-control:focus {
    background: #fff;
    border-color: #c49442;
    box-shadow: 0 0 0 4px rgba(196,148,66,.09);
}

.enquiry-input:focus-within > i {
    color: #c49442;
}


/* =========================================================
   TEXTAREA
========================================================= */

.enquiry-textarea > i {
    top: 18px;
    transform: none;
}

.enquiry-textarea textarea.form-control {
    min-height: 135px;
    padding-top: 14px;
    resize: vertical;
}


/* =========================================================
   PRIVACY NOTE
========================================================= */

.enquiry-privacy {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    padding: 12px 14px;
    color: #7b8782;
    background: #f7f9f8;
    border: 1px solid #e8ecea;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1.5;
}

.enquiry-privacy i {
    flex: 0 0 auto;
    color: #c49442;
    font-size: 12px;
}


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

.enquiry-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 32px 25px;
    background: #fff;
    border-top: 1px solid #edf0ee;
}

.enquiry-cancel-btn {
    min-height: 48px;
    padding: 0 20px;
    color: #68756f;
    background: #f4f6f5;
    border: 1px solid #e3e8e5;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.enquiry-cancel-btn:hover {
    color: #173f35;
    background: #e9eeeb;
    border-color: #dce4df;
}

.enquiry-submit-btn {
    min-height: 48px;
    padding: 0 23px;
    color: #173f35;
    background: #c49442;
    border: 1px solid #c49442;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.enquiry-submit-btn:hover {
    color: #fff;
    background: #173f35;
    border-color: #173f35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23,63,53,.18);
}


/* =========================================================
   MODAL BACKDROP
========================================================= */

.modal-backdrop.show {
    opacity: .72;
}


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

@media (max-width: 767px) {

    .enquiry-modal {
        margin: 12px;
        border-radius: 17px;
    }

    .enquiry-modal-header {
        padding: 24px 21px;
    }

    .enquiry-modal-body {
        padding: 24px 21px;
    }

    .enquiry-modal-footer {
        padding: 15px 21px 21px;
    }

    .enquiry-header-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        border-radius: 11px;
    }

    .enquiry-modal-title {
        font-size: 22px;
    }

    .enquiry-modal-subtitle {
        font-size: 11px;
    }

    .enquiry-close {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .enquiry-modal-footer {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
    }

    .enquiry-cancel-btn,
    .enquiry-submit-btn {
        width: 100%;
        min-height: 46px;
    }

}

@media (max-width: 480px) {

    .enquiry-modal {
        margin: 8px;
    }

    .enquiry-header-content {
        gap: 11px;
    }

    .enquiry-header-icon {
        display: none;
    }

    .enquiry-modal-title {
        font-size: 20px;
    }

    .enquiry-modal-header {
        padding: 21px 18px;
    }

    .enquiry-modal-body {
        padding: 21px 18px;
    }

    .enquiry-modal-footer {
        padding: 13px 18px 18px;
    }

    .enquiry-input .form-control {
        min-height: 48px;
    }

}
/* end modal section */