/********** Template CSS **********/
:root {
    --bs-primary: #FFD4CC;   /* peach */
}
:root {
    --primary: #FFD4CC;
    --secondary: #165168;
    --light: #FFD4CC;
    --dark: #165168;
}
/* ===== Main Background Color ===== */
body {
    background-color: #FFF4F1;
    background-image: radial-gradient(rgba(0,0,0,0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.my-6 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .2s;
}

.btn.btn-primary {
    background-color: #FFD4CC;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

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



/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   /* push content to bottom */
    padding: 0 28px 100px;       /* bottom spacing */
    background: linear-gradient(
        rgba(0,0,0,0.32),
        rgba(0,0,0,0.15)
    );
}


.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .25s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}
.header-carousel .owl-carousel-item {
    aspect-ratio: 16 / 10;
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .2s;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .2s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .2s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}
.brand-title {
    color: #FFD4CC !important;
    font-family: 'Playfair Display', serif;
}

/* ===== Navbar Scroll Color Fix ===== */
.navbar.fixed-top.bg-dark,
.navbar.fixed-top.shadow-sm,
.navbar.fixed-top.scrolled {
    background: rgba(22, 81, 104, 0.95) !important;
    backdrop-filter: blur(6px);
}

/* smooth premium look */
.navbar.fixed-top {
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.navbar .text-primary {
    color: #FFD4CC !important;
}
/* ===== Logo Styling ===== */
.brand-logo {
    height: 40px;
    width: auto;
}
/* ===== Facts Section (Stable Production Version) ===== */

.fact-item {
    background-color: #FFD4CC;
    border: none;
    transition: .2s;
}

/* Override Bootstrap bg-light safely */
.fact-item.bg-light {
    background-color: #FFD4CC !important;
}

/* Override Bootstrap text-primary on icons */
.fact-item i.text-primary {
    color: #165168 !important;
}

/* Force teal text for everything inside */
.fact-item h1,
.fact-item h2,
.fact-item h3,
.fact-item h4,
.fact-item p,
.fact-item small {
    color: #165168;
}

/* Hover effect */
.fact-item:hover {
    background-color: #e2aea5;
    transform: translateY(-6px);
}

/* ===== About Us heading color ===== */
.about .text-primary,
.about-us .text-primary,
.section-title .text-primary {
    color: #FFD4CC !important;   /* peach */
}
/* CTA peach band */
.cta-peach {
    background-color: #165168;
    color: #FFD4CC;
}
.cta-peach * {
    color: #FFD4CC;
}
/* ===== CTA PHONE SIZE FIX ===== */

.cta-peach .fa-phone-alt {
    font-size: 32px !important;
}

.cta-peach .fs-1 {
    font-size: 22px !important;
    font-weight: 600;
}

.cta-peach .fs-5 {
    font-size: 15px !important;
}
/* CTA heading contrast */
.cta-peach h1
.cta-peach p,
.cta-peach small {
    color: #FFD4CC;
}
.footer-custom {
    background-color: #165168;
    color: #FFD4CC;
}
.footer-custom a {
    color: inherit;
}

.footer-custom a:hover {
    opacity: 0.8;
}
/* Footer logo styling */
.footer-logo {
    height: 150px;
    width: auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    line-height: 55px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.icon-teal {
    background-color: #165168;
}
/* ===== FULL SCREEN HERO (100% MOBILE HEIGHT) ===== */

.header-carousel,
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item,
.header-carousel .owl-carousel-item {
    min-height: 100svh;
    height: auto;
}

.header-carousel .owl-carousel-item {
    position: relative;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Keep overlay full height */
.header-carousel .owl-carousel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-left: 28px;
    padding-right: 28px;
}




/* ===== MOBILE BOTTOM NAV (INVERTED + GLASS EFFECT) ===== */

.mobile-bottom-nav {
    display: none;
}

/* ===== Blog Page Styling ===== */

.blog-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.blog-content h2,
.blog-content h3 {
    font-family: 'Playfair Display', serif;
    color: #165168;
    font-weight: 700;
}

.blog-content img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.blog-content blockquote {
    font-style: italic;
    border-left: 4px solid #FFD4CC;
}
.blog-header {
    padding-top: 140px;
    padding-bottom: 40px;
    background-color: #FFF4F1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
/* ===== Blog Page Navbar (Static Teal Only on Blog) ===== */

.blog-page .navbar {
    background-color: #165168 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.blog-page .navbar .navbar-nav .nav-link {
    color: #FFD4CC !important;
}

.blog-page .navbar .navbar-nav .nav-link:hover,
.blog-page .navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.blog-page .brand-title {
    color: #FFD4CC !important;
}
/* ================================================= */
/* ================= MOBILE ONLY =================== */
/* ================================================= */

@media (max-width: 768px) {

    /* ===== Navbar ===== */

    .brand-logo {
        height: 30px;
    }

    .navbar {
        justify-content: center;
    }

    .navbar-brand {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 12px;
    }

    .navbar-collapse {
        display: none;
    }

    .navbar-toggler {
        display: none;
    }

    /* ===== Hero Section ===== */

    .header-carousel,
    .header-carousel .owl-stage-outer,
    .header-carousel .owl-stage,
    .header-carousel .owl-item,
    .header-carousel .owl-carousel-item {
        min-height: 100svh;
        height: auto;
    }

    .header-carousel .owl-carousel-item {
        position: relative;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .row {
        justify-content: flex-start;
        text-align: left;
    }

    .header-carousel .col-lg-8 {
        padding-left: 14px;
        padding-right: 28px;
    }

    .header-carousel h1 {
        font-size: clamp(30px, 6.5vw, 56px);
        line-height: 1.05;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .header-carousel p {
        font-size: 16px;
        line-height: 1.5;
        max-width: 95%;
        margin-bottom: 24px;
    }

    .header-carousel .btn {
        display: inline-block;
        width: auto;
        padding: 8px 14px;
        font-size: 16px;
    }

    /* ===== Fact Cards ===== */

    .fact-item {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .fact-item i {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .fact-item p {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .fact-item h1 {
        font-size: 26px;
        line-height: 1.1;
    }

    .container-xxl.py-6 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .blog-header {
        padding-top: 110px;
        padding-bottom: 30px;
    }

    /* ===== Mobile Bottom Navigation ===== */

    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(255, 212, 204, 0.92);
        backdrop-filter: blur(8px);
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 10000;
        box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
    }

    .mobile-bottom-nav a {
        color: #165168;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
        transition: transform 0.2s ease;
    }

    .mobile-bottom-nav i {
        font-size: 20px;
        margin-bottom: 4px;
    }

    body {
        padding-bottom: 80px;
        position: relative;
    }

    /* ===== WhatsApp Button Adjustment ===== */

    .whatsapp-float {
        bottom: 95px;
    }

}