/* ==================================================== */
/* 5WH Homepage Matched Local Page Stylesheet          */
/* Palette: #ffdb43 (Primary Yellow), #000 / #183153 (Dark) */
/* Font: 'Karla', sans-serif (Matching 5WH Core)        */
/* ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

:root {
    --lp-primary: #000000;
    --lp-navy: #183153;
    --lp-accent: #ffdb43;
    --lp-accent-hover: #e6c229;
    --lp-accent-light: rgba(255, 219, 67, 0.15);
    --lp-brand-blue: #1b75ba;
    --lp-text-dark: #000000;
    --lp-text-body: #222222;
    --lp-text-muted: #444444;
    --lp-bg-slate: #F9FAFB;
    --lp-border: #E5E7EB;
    --lp-card-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
    --lp-card-hover-shadow: 0 15px 30px -5px rgba(255, 219, 67, 0.25);
}

/* ---------------------------------------------------- */
/* Master Typography & Font Enforcement                 */
/* Exclude <i> tags so FontAwesome icons render cleanly! */
/* ---------------------------------------------------- */
.local-page-wrapper,
.local-page-wrapper p:not(.lp-hero-subtitle),
.local-page-wrapper h1,
.local-page-wrapper h2,
.local-page-wrapper h3,
.local-page-wrapper h4,
.local-page-wrapper h5,
.local-page-wrapper h6,
.local-page-wrapper span:not(.fa):not(.fas):not(.far):not(.fab),
.local-page-wrapper div,
.local-page-wrapper a,
.local-page-wrapper button,
.local-page-wrapper input,
.local-page-wrapper textarea,
.local-page-wrapper label,
.local-page-wrapper li {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Ensure FontAwesome icons keep their native icon font family */
.local-page-wrapper i,
.local-page-wrapper .fa,
.local-page-wrapper .fas,
.local-page-wrapper .far,
.local-page-wrapper .fab,
.local-page-wrapper [class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal !important;
}

.local-page-wrapper {
    color: var(--lp-text-body);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---------------------------------------------------- */
/* Global Paragraph & Rich Text Rules                   */
/* ---------------------------------------------------- */
.local-page-wrapper p:not(.lp-hero-subtitle) {
    font-size: 16px !important;
    line-height: 1.85 !important;
    color: #222222 !important;
    margin-bottom: 20px !important;
}

.local-page-wrapper p:last-child {
    margin-bottom: 0 !important;
}

.lp-editor-content p.lead,
.lp-about-paragraph p.lead,
.local-page-wrapper .lead {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    margin-bottom: 22px !important;
}

/* Headings inside rich text editor content (CKEditor output) */
.lp-editor-content h1, .lp-about-paragraph h1,
.lp-editor-content h2, .lp-about-paragraph h2,
.lp-editor-content h3, .lp-about-paragraph h3,
.lp-editor-content h4, .lp-about-paragraph h4 {
    color: #000000 !important;
    font-weight: 700 !important;
    margin-top: 28px !important;
    margin-bottom: 16px !important;
    line-height: 1.3 !important;
}

.lp-editor-content h2, .lp-about-paragraph h2 {
    font-size: 24px !important;
    border-left: 5px solid #ffdb43 !important;
    padding-left: 14px !important;
}

.lp-editor-content h3, .lp-about-paragraph h3 {
    font-size: 20px !important;
}

.lp-editor-content h4, .lp-about-paragraph h4 {
    font-size: 18px !important;
}

.lp-editor-content strong, .lp-about-paragraph strong,
.lp-editor-content b, .lp-about-paragraph b {
    color: #000000 !important;
    font-weight: 700 !important;
}

.lp-editor-content a, .lp-about-paragraph a {
    color: #1b75ba !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.lp-editor-content a:hover, .lp-about-paragraph a:hover {
    color: #0b408d !important;
}

/* ---------------------------------------------------- */
/* Feature Checkmark Grid Cards (CKEditor Output)       */
/* Transforms unstyled list items into rich 5WH cards   */
/* ---------------------------------------------------- */
.lp-check-list,
.lp-editor-content ul, 
.lp-about-paragraph ul {
    margin: 24px 0 28px 0 !important;
    padding-left: 0 !important;
    list-style: none !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
    gap: 14px 18px !important;
}

.lp-check-item,
.lp-editor-content ul li, 
.lp-about-paragraph ul li {
    position: relative !important;
    padding: 12px 16px 12px 44px !important;
    margin-bottom: 0 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    background: #FFFDF0 !important;
    border: 1px solid #FFE680 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
}

.lp-check-item:hover,
.lp-editor-content ul li:hover {
    border-color: #ffdb43 !important;
    background: #ffffff !important;
    box-shadow: 0 8px 20px rgba(255, 219, 67, 0.3) !important;
    transform: translateY(-3px) !important;
}

.lp-check-item::before,
.lp-check-item i,
.lp-editor-content ul li::before, 
.lp-about-paragraph ul li::before {
    content: "\f00c" !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 22px !important;
    height: 22px !important;
    background: #ffdb43 !important;
    color: #000000 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.lp-editor-content blockquote, .lp-about-paragraph blockquote {
    background: #F9FAFB !important;
    border-left: 4px solid #ffdb43 !important;
    padding: 20px 24px !important;
    margin: 24px 0 !important;
    border-radius: 0 12px 12px 0 !important;
    font-style: italic !important;
    color: #333333 !important;
    font-size: 16px !important;
}

/* ---------------------------------------------------- */
/* Global Utilities & Section Spacing                   */
/* ---------------------------------------------------- */
.lp-section-padding {
    padding: 85px 0;
}

.lp-section-padding-sm {
    padding: 50px 0;
}

.lp-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    color: #000000 !important;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: #ffdb43;
    padding: 6px 18px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lp-heading-section {
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #000000 !important;
    margin-bottom: 22px !important;
}

.lp-heading-section-center {
    text-align: center;
}

.lp-subheading-lead {
    font-size: 16.5px !important;
    color: var(--lp-text-muted) !important;
    max-width: 680px;
    margin: 0 auto 45px;
    line-height: 1.7 !important;
}

/* ---------------------------------------------------- */
/* Hero Section Layout & Aesthetics (Transparent Layer) */
/* ---------------------------------------------------- */
.lp-hero-banner {
    position: relative;
    width: 100%;
    min-height: 540px;
    background-color: #000000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 70px 0 75px;
    color: #ffffff;
}

/* Transparent Dark Gradient Overlay for Maximum Text Contrast & Hero Image Visibility */
.lp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(24, 49, 83, 0.55) 100%);
    z-index: 1;
}

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

.lp-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid #ffdb43;
    color: #ffdb43 !important;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lp-hero-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero Subtitle Guarantee */
.lp-hero-banner p,
.lp-hero-subtitle,
.local-page-wrapper .lp-hero-banner p,
.local-page-wrapper .lp-hero-subtitle {
    color: #ffffff !important;
    font-size: 17.5px !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.9) !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 28px !important;
}

.lp-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

/* 5WH Signature Yellow Button */
.lp-btn-quote {
    background: #ffdb43;
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 13px 34px;
    border-radius: 30px;
    border: 1px solid #ffdb43;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.lp-btn-quote:hover {
    background: #000000;
    color: #ffdb43 !important;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lp-btn-explore {
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid #ffdb43;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    backdrop-filter: blur(4px);
}

.lp-btn-explore:hover {
    background: #ffdb43;
    color: #000000 !important;
    border-color: #ffdb43;
}

.lp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.lp-hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.45);
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-hero-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffdb43;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    font-weight: bold;
}

.lp-hero-badge-label {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ---------------------------------------------------- */
/* Hero Banner Right Enquiry Form Card                  */
/* ---------------------------------------------------- */
.lp-hero-enquiry-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFE680;
    color: #000000;
    position: relative;
    z-index: 5;
}

.lp-hero-enquiry-card .form-group {
    margin-bottom: 12px;
}

.lp-form-control-sm {
    height: 44px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
    padding: 8px 14px;
    font-size: 14px !important;
    color: #000000 !important;
    background-color: #F9FAFB;
    transition: all 0.2s ease;
}

.lp-form-control-sm:focus {
    background-color: #ffffff;
    border-color: #ffdb43;
    box-shadow: 0 0 0 3px rgba(255, 219, 67, 0.3);
    outline: none;
}

.lp-dial-code-select {
    border-radius: 8px 0 0 8px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    background-color: #FFFDF0 !important;
    border-color: #CBD5E1 !important;
    padding: 8px 8px !important;
    height: 44px;
}

@media (max-width: 991px) {
    .lp-hero-enquiry-card {
        margin-top: 35px;
    }
}

/* ---------------------------------------------------- */
/* About & Image Section Enhancements                   */
/* ---------------------------------------------------- */
.lp-about-section {
    background-color: #ffffff;
}

.lp-img-wrapper-styled {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--lp-border);
    background: #F9FAFB;
}

.lp-img-wrapper-styled img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lp-img-wrapper-styled:hover img {
    transform: scale(1.03);
}

.lp-img-floating-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.80);
    backdrop-filter: blur(10px);
    border: 1px solid #ffdb43;
    color: #ffffff !important;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.lp-img-floating-badge i {
    color: #ffdb43 !important;
    font-size: 15px !important;
}

/* ---------------------------------------------------- */
/* Features Grid Section                                */
/* ---------------------------------------------------- */
.lp-features-section {
    background-color: var(--lp-bg-slate);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-feature-card {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    box-shadow: var(--lp-card-shadow);
    transition: all 0.3s ease;
}

.lp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-card-hover-shadow);
    border-color: #ffdb43;
}

.lp-feature-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffdb43;
    color: #000000 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.lp-feature-card:hover .lp-feature-icon-circle {
    background: #000000;
    color: #ffdb43 !important;
    transform: scale(1.08);
}

.lp-feature-title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 12px !important;
}

.lp-feature-desc {
    font-size: 14.5px !important;
    color: var(--lp-text-muted) !important;
    line-height: 1.65 !important;
    margin-bottom: 0 !important;
}

/* ---------------------------------------------------- */
/* Wholesale / Bulk Audience Grid                       */
/* ---------------------------------------------------- */
.lp-wholesale-section {
    background-color: #ffffff;
}

.lp-audience-card {
    background: #F9FAFB;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    transition: all 0.25s ease;
}

.lp-audience-card:hover {
    border-color: #ffdb43;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 219, 67, 0.2);
    transform: translateX(4px);
}

.lp-audience-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffdb43;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    flex-shrink: 0;
}

.lp-audience-name {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 !important;
}

/* ---------------------------------------------------- */
/* Why Choose Us Section                                */
/* ---------------------------------------------------- */
.lp-why-section {
    background-color: var(--lp-bg-slate);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-why-card {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 26px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    box-shadow: var(--lp-card-shadow);
    transition: all 0.3s ease;
}

.lp-why-card:hover {
    border-color: #ffdb43;
    transform: translateY(-4px);
    box-shadow: var(--lp-card-hover-shadow);
}

.lp-why-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffdb43;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    flex-shrink: 0;
}

.lp-why-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 8px !important;
}

.lp-why-card-desc {
    font-size: 14.5px !important;
    color: var(--lp-text-muted) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* ---------------------------------------------------- */
/* Applications Section                                 */
/* ---------------------------------------------------- */
.lp-apps-section {
    background-color: #ffffff;
}

.lp-app-card {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 26px 24px;
    height: 100%;
    box-shadow: var(--lp-card-shadow);
    transition: all 0.3s ease;
}

.lp-app-card:hover {
    border-color: #ffdb43;
    box-shadow: var(--lp-card-hover-shadow);
    transform: translateY(-4px);
}

.lp-app-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.lp-app-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffdb43;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px !important;
}

.lp-app-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 !important;
}

.lp-app-desc {
    font-size: 14.5px !important;
    color: var(--lp-text-muted) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* ---------------------------------------------------- */
/* FAQ Accordion Styling                                */
/* ---------------------------------------------------- */
.lp-faq-item {
    border: 1px solid #E5E7EB !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lp-faq-item:hover {
    border-color: #ffdb43 !important;
    box-shadow: 0 4px 15px rgba(255, 219, 67, 0.15) !important;
}

.lp-faq-btn {
    width: 100% !important;
    text-align: left !important;
    padding: 18px 22px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    background: #ffffff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    border-radius: 12px !important;
}

.lp-faq-btn:hover,
.lp-faq-btn[aria-expanded="true"] {
    color: #000000 !important;
    background: rgba(255, 219, 67, 0.2) !important;
    border-left: 5px solid #ffdb43 !important;
}

.lp-faq-btn .faq-icon-q {
    color: #000000 !important;
    margin-right: 10px;
    font-size: 16px !important;
}

.lp-faq-btn .faq-chevron {
    transition: transform 0.3s ease;
    color: #000000 !important;
    font-size: 14px !important;
}

.lp-faq-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.lp-faq-body {
    padding: 18px 22px 22px !important;
    background: #F9FAFB !important;
    border-top: 1px solid #E5E7EB !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #333333 !important;
}

/* ---------------------------------------------------- */
/* Enquiry Form Card & Modal                             */
/* ---------------------------------------------------- */
.lp-enquiry-section {
    background-color: var(--lp-bg-slate);
    border-top: 1px solid var(--lp-border);
}

.lp-enquiry-card {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.lp-form-label {
    font-weight: 700 !important;
    font-size: 13.5px !important;
    color: #000000 !important;
    margin-bottom: 6px;
    display: block;
}

.lp-form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
    padding: 12px 16px;
    font-size: 15px !important;
    color: #000000 !important;
    background-color: #F9FAFB;
    transition: all 0.25s ease;
}

.lp-form-control:focus {
    background-color: #ffffff;
    border-color: #ffdb43;
    box-shadow: 0 0 0 3px rgba(255, 219, 67, 0.3);
    outline: none;
}

textarea.lp-form-control {
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lp-section-padding { padding: 55px 0; }
    .lp-hero-title { font-size: 30px !important; }
    .lp-hero-subtitle { font-size: 15.5px !important; }
    .lp-heading-section { font-size: 26px !important; }
    .lp-enquiry-card { padding: 26px 20px; }
    .lp-check-list, .lp-editor-content ul { grid-template-columns: 1fr !important; }
}
