/* 
   Ascend Africa - Main Stylesheet
   Design Goal: Premium, modern, clean, geometric decorations, rounded cards, smooth animations.
*/

/* --- Google Fonts & Icons --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

/* --- CSS Variables --- */
:root {
    --primary-blue: #24479C;
    --primary-blue-rgb: 36, 71, 156;
    --accent-orange: #F36C45;
    --accent-orange-rgb: 243, 108, 69;
    --accent-purple: #7553B5;
    --accent-purple-rgb: 117, 83, 181;
    --light-blue: #7D97D6;
    --soft-pink: #F4B8BE;
    --white: #FFFFFF;
    --bg-light: #F8F8F8;
    --text-dark: #1A1A1A;
    --text-muted: #6c757d;
    --font-family: 'Poppins', sans-serif;

    --border-radius-card: 30px;
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base Styles --- */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container-max {
    max-width: 1400px;
    margin: 0 auto;
}

/* Custom Spacing */
.py-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-blue);
}

.h1-large {
    font-size: 3rem;
    line-height: 1.2;
}

.text-orange {
    color: var(--accent-orange) !important;
}

.heading-section {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

/* --- Custom Buttons --- */
.btn-primary-custom {
    background-color: var(--accent-orange);
    color: var(--white);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-bounce);
    box-shadow: 0 5px 15px rgba(243, 108, 69, 0.3);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: #e25b34;
    color: var(--white);
    transform: scale(1.05);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--primary-blue);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    transition: var(--transition-bounce);
}

.btn-secondary-custom:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

/* Link Actions */
.btn-link-custom {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-link-custom:hover {
    color: var(--primary-blue);
}

.btn-link-custom i {
    transition: var(--transition-bounce);
}

.btn-link-custom:hover i {
    transform: translateX(5px);
}

/* --- SECTION 1 - HEADER --- */
.header-wrapper {
    z-index: 1030;
    transition: var(--transition-smooth);
}

.topbar-custom {
    background-color: var(--primary-blue);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    height: 40px;
    display: flex;
    align-items: center;
}

.topbar-custom a {
    transition: var(--transition-smooth);
}

.topbar-custom a:hover {
    color: var(--accent-orange) !important;
}

/* Scrolled state: collapse topbar */
.header-wrapper.scrolled .topbar-custom {
    height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    border-bottom: none;
}

.nav-custom {
    padding: 10px 0;
    background-color: var(--white) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Scrolled state: tighter padding and stronger shadow */
.header-wrapper.scrolled .nav-custom {
    /* padding: 10px 0; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.brand-logo {
    width: 170px;
    transition: var(--transition-smooth);
}

.nav-custom .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--accent-orange);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: right;
}

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

.nav-custom .nav-link:hover,
.nav-custom .nav-link.active {
    color: var(--accent-orange) !important;
}

/* Header Action elements */
.btn-search-toggle {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.btn-search-toggle:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.btn-lang {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.btn-lang:hover {
    color: var(--accent-orange);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(36, 71, 156, 0.98);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.btn-close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.btn-close-search:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

.search-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: var(--white) !important;
    font-size: 1.8rem;
    padding: 15px 50px 15px 0;
}

.search-input:focus {
    background: transparent;
    box-shadow: none;
    border-color: var(--accent-orange);
}

.search-form {
    position: relative;
}

.btn-search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
}

.btn-search-submit:hover {
    color: var(--accent-orange);
}

/* Offcanvas custom overrides */
.offcanvas {
    background-color: var(--white);
}

.offcanvas .nav-link {
    color: var(--text-dark) !important;
    padding: 12px 20px !important;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
}

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


/* --- SECTION 2 - HERO BANNER --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #24479C 0%, #173070 100%);
    color: var(--white);
    overflow: hidden;
    padding-top: 140px;
}

/* Geometric Layout on Hero Left (Subtle decorative lines) */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.05);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

/* Dynamic Interactive Geometric shapes (Hero Right) */
.hero-shapes-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-shape {
    position: absolute;
    transition: var(--transition-smooth);
}

/* Shapes design matching reference site visual */
.shape-rect-large {
    width: 380px;
    height: 280px;
    background-color: var(--accent-purple);
    border-radius: 40px;
    top: 100px;
    right: 50px;
    z-index: 3;
    opacity: 0.9;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shape-square-blue {
    width: 250px;
    height: 250px;
    background-color: var(--light-blue);
    border-radius: 30px;
    top: 50px;
    right: 180px;
    z-index: 1;
    transform: rotate(-10deg);
}

.shape-diamond-pink {
    width: 160px;
    height: 160px;
    background-color: var(--soft-pink);
    border-radius: 35px;
    top: 20px;
    right: 30px;
    transform: rotate(45deg);
    z-index: 2;
}

.shape-circle-orange {
    width: 120px;
    height: 120px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    top: 40px;
    right: 320px;
    z-index: 2;
}

.shape-pill-horizontal {
    width: 280px;
    height: 80px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--soft-pink) 100%);
    border-radius: 50px;
    bottom: 60px;
    right: 180px;
    z-index: 4;
}

.shape-pill-small-pink {
    width: 160px;
    height: 60px;
    background-color: var(--soft-pink);
    border-radius: 50px;
    bottom: 40px;
    left: 40px;
    z-index: 1;
}

/* Overlay Text Cards in Hero Shapes Area */
.hero-info-card-1 {
    position: absolute;
    width: 260px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 24px;
    padding: 25px 20px;
    top: 90px;
    left: 10px;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-info-card-2 {
    position: absolute;
    width: 280px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 24px;
    padding: 22px 25px;
    top: 240px;
    left: 45px;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* --- SECTION 3 - COMPANY INTRODUCTION --- */
.intro-section {
    background-color: var(--white);
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
}


/* --- SECTION 4 - FEATURE CARDS --- */
.feature-section {
    background-color: var(--bg-light);
}

.feature-section img {
    transition: var(--transition-smooth);
}

.feature-section .row:hover img {
    transform: scale(1.03);
}


/* --- SECTION 5 - PRODUCTS SHOWCASE --- */
.product-showcase-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.product-showcase-img {
    max-height: 320px;
    max-width: 500px;
    z-index: 2;
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: var(--transition-smooth);
}

.product-image-wrapper:hover .product-showcase-img {
    transform: translateY(-5px);
}

/* Background decorative layout for showcase */
.product-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.product-shape-circle {
    position: absolute;
    width: 390px;
    height: 390px;
    background-color: var(--soft-pink);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.product-shape-diamond {
    position: absolute;
    width: 230px;
    height: 230px;
    background-color: var(--light-blue);
    border-radius: 30px;
    transform: rotate(45deg);
    bottom: 20px;
    left: 10%;
    opacity: 0.8;
}


/* --- SECTION 6 - DOWNLOAD BROCHURE SECTION --- */
.brochure-section {
    background-color: var(--bg-light);
}

.brochure-card {
    background-color: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    padding: 40px;
    transition: var(--transition-smooth);
}

.brochure-card:hover {
    box-shadow: var(--shadow-hover);
}

.brochure-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brochure-mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.brochure-card:hover .brochure-mockup-img {
    transform: rotate(-2deg) scale(1.03);
}





/* --- SECTION 8 - FOOTER --- */
.footer-custom {
    background-color: #173070;
    color: var(--white);
    border-top: 5px solid var(--accent-orange);
    font-size: 0.95rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.social-icon:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
}

.footer-bottom {
    font-size: 0.85rem;
}

/* --- ANIMATIONS --- */

/* 1. Hero Shape Floating Animation */
@keyframes floatUp {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes floatDown {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.float-slow {
    animation: floatUp 8s ease-in-out infinite;
}

.float-medium {
    animation: floatDown 6s ease-in-out infinite;
}

.float-fast {
    animation: floatUp 5s ease-in-out infinite;
}

/* 2. Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Compliance & Quality Cards */
.compliance-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    background-color: var(--white);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.compliance-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(36, 71, 156, 0.15);
}

.compliance-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: rgba(243, 108, 69, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.compliance-card:hover .compliance-icon-box {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotate(5deg) scale(1.05);
}

/* Page Header Offset */
.page-header-offset {
    padding-top: 190px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173070 100%);
    color: var(--white);
    padding-bottom: 60px;
}

/* Vacancy Cards */
.vacancy-card {
    border: 1px solid #eaeaea;
    border-left: 4px solid var(--primary-blue);
    border-radius: 12px;
    padding: 30px;
    background-color: var(--white);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.vacancy-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: #eaeaea;
    border-left-color: var(--accent-orange);
    transform: translateY(-4px);
}

.vacancy-card.sales {
    border-left-color: #198754;
}

.careers-apply-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-orange);
    padding: 35px;
    transition: transform 0.3s ease;
}

.careers-apply-card:hover {
    transform: translateY(-3px);
}

/* Product Cards */
.product-card {
    border: 1px solid #eaeaea;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--white);
    transition: var(--transition-bounce);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--light-blue);
}

.product-card-img-wrapper {
    height: 220px;
    padding: 20px;
    background-color: #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f5f5f5;
}

.product-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
}

.product-card-body {
    padding: 20px;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Legal Cards */
.legal-card {
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 30px;
    background-color: var(--white);
    height: 100%;
    transition: var(--transition-smooth);
}

.legal-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--light-blue);
}

/* About Us Page Custom Layout Styles */
.about-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-badge-established {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(243, 108, 69, 0.4);
    z-index: 10;
    line-height: 1.2;
    border: 4px solid var(--white);
}

.about-badge-established span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-quote-box {
    border-left: 4px solid var(--accent-orange);
    padding-left: 20px;
    font-style: italic;
    background-color: rgba(243, 108, 69, 0.05);
    border-radius: 0 12px 12px 0;
}

.objectives-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173070 100%);
    color: var(--white);
}

.objective-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    transition: var(--transition-smooth);
}

.objective-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.objective-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--accent-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.quote-accent-border {
    border-left: 3px solid var(--accent-orange);
    padding-left: 15px;
    font-weight: 600;
    color: var(--primary-blue);
}

.partner-cta-section {
    background-color: var(--accent-orange);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-cta-white {
    background-color: var(--white);
    color: var(--accent-orange) !important;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: 2px solid var(--white);
}

.btn-cta-white:hover {
    background-color: transparent;
    color: var(--white) !important;
    transform: scale(1.05);
    border-color: var(--white);
}

/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 1200px) {
    .h1-large {
        font-size: 3rem;
    }

    .shape-rect-large {
        width: 320px;
        height: 240px;
    }

    .shape-square-blue {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .py-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .h1-large {
        font-size: 2.5rem;
    }

    .heading-section {
        font-size: 2rem;
    }

    /* Header scrolled state for Mobile toggler */
    .nav-custom {
        background-color: var(--white) !important;
        padding: 12px 0;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-shapes-container {
        height: 420px;
        margin-top: 50px;
    }

    .shape-rect-large {
        width: 260px;
        height: 200px;
        right: 20px;
        top: 80px;
    }

    .shape-square-blue {
        width: 160px;
        height: 160px;
        right: 120px;
        top: 40px;
    }

    .shape-diamond-pink {
        width: 120px;
        height: 120px;
        right: 10px;
    }

    .shape-circle-orange {
        width: 90px;
        height: 90px;
        right: 220px;
    }

    .shape-pill-horizontal {
        width: 220px;
        height: 60px;
        bottom: 40px;
        right: 120px;
    }

    .hero-info-card-1 {
        width: 200px;
        padding: 15px 12px;
        font-size: 0.8rem;
        top: 70px;
        left: 10px;
    }

    .hero-info-card-2 {
        width: 220px;
        padding: 15px 12px;
        font-size: 0.8rem;
        top: 190px;
        left: 30px;
        bottom: auto;
    }

    .feature-card-content {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .h1-large {
        font-size: 2.2rem;
    }

    .hero-shapes-container {
        height: 320px;
    }

    .shape-rect-large {
        width: 200px;
        height: 150px;
    }

    .shape-square-blue {
        width: 120px;
        height: 120px;
        right: 80px;
    }

    .shape-circle-orange {
        width: 70px;
        height: 70px;
        right: 160px;
    }

    .shape-diamond-pink {
        width: 90px;
        height: 90px;
    }

    .shape-pill-horizontal {
        width: 160px;
        height: 50px;
        bottom: 30px;
        right: 80px;
    }

    .hero-info-card-1 {
        display: none;
    }

    .hero-info-card-2 {
        display: none;
    }

    .feature-img-container {
        min-height: 240px;
    }

    .product-shape-circle {
        width: 240px;
        height: 240px;
    }

    .product-showcase-img {
        max-height: 280px;
    }

    .brochure-card {
        padding: 20px;
    }

    .footer-col-brand {
        margin-bottom: 30px;
    }
}

/* Extra utility helpers */
.fs-7 {
    font-size: 0.9rem;
}

.fs-8 {
    font-size: 0.8rem;
}

.fs-9 {
    font-size: 0.75rem;
}

.transition-all {
    transition: all 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Helper to fit 9 navbar links on medium desktops */
@media (min-width: 992px) and (max-width: 1400px) {
    .nav-custom .nav-link {
        font-size: 0.8rem !important;
        padding: 8px 6px !important;
    }

    .nav-custom .nav-link::after {
        left: 6px !important;
        right: 6px !important;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-to-top.visible {
    right: 30px;
}

/* Contact Page Cards styling */
.contact-grid-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.contact-card-premium {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-orange);
    padding: 40px;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card-premium:hover {
    transform: translateY(-5px);
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(251, 133, 0, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 25px 0 15px 0;
}

.contact-divider {
    width: 100%;
    height: 1px;
    background-color: #EAEAEA;
    margin: 30px 0;
}

.contact-map-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-orange);
    padding: 10px;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.contact-map-iframe {
    width: 100%;
    flex-grow: 1;
    min-height: 450px;
    border: none;
    border-radius: 8px;
}

/* Coming Soon Page Styles */
.coming-soon-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.coming-soon-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--accent-orange);
    padding: 50px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.coming-soon-badge {
    background-color: rgba(251, 133, 0, 0.1);
    color: var(--accent-orange);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
}

/* =============================================
   Leadership Page Styles
   ============================================= */


.leader-meta {
    font-size: 0.78rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.leader-meta i {
    color: var(--primary-blue);
    font-size: 0.85rem;
}

/* Board Section */
.board-member-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.board-member-row:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(36, 71, 156, 0.15);
    transform: translateX(4px);
}

.board-member-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173070 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.board-member-avatar.orange {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #c4441a 100%);
}

.board-member-info {
    flex: 1;
}

.board-member-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.board-member-title {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* =============================================
   Product Catalog Table Styles
   ============================================= */

.product-table-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.product-table-toolbar {
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.product-search-input {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 9px 16px 9px 40px;
    font-size: 0.85rem;
    width: 280px;
    background-color: #f8f8f8;
    transition: all 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
}

.product-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(36, 71, 156, 0.08);
}

.filter-pill {
    background: #f4f4f4;
    border: 1px solid #e8e8e8;
    color: #555;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-pill:hover {
    background: rgba(36, 71, 156, 0.08);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-pill.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
}

.product-table thead th {
    background: #f8f9fb;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 18px;
    border-bottom: 2px solid #eef0f5;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.product-table thead th:hover {
    background: #eef0f5;
}

.product-table thead th .sort-icon {
    margin-left: 4px;
    opacity: 0.4;
    font-size: 0.7rem;
}

.product-table thead th.sorted .sort-icon {
    opacity: 1;
    color: var(--accent-orange);
}

.product-table tbody tr {
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s ease;
}

.product-table tbody tr:hover {
    background-color: #fafcff;
}

.product-table tbody tr:last-child {
    border-bottom: none;
}

.product-table td {
    padding: 12px 18px;
    vertical-align: middle;
    color: #444;
}

.product-name-cell {
    font-weight: 700;
    color: var(--text-dark);
}

.product-inn-cell {
    color: #777;
    font-style: italic;
}

.status-badge {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-marketed {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.status-registered {
    background: rgba(36, 71, 156, 0.1);
    color: var(--primary-blue);
}

.reg-no-cell {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #888;
}

.table-footer {
    padding: 14px 24px;
    background: #f8f9fb;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.table-footer-count {
    font-size: 0.8rem;
    color: #888;
}

.table-footer-count strong {
    color: var(--primary-blue);
}

.table-pagination {
    display: flex;
    gap: 4px;
    align-items: center;
}

.page-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    background: #fff;
    color: #555;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn:hover {
    background: rgba(36, 71, 156, 0.08);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.page-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    font-weight: 700;
}

.page-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.table-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.catalog-stats-bar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173070 100%);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 28px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

@media (max-width: 576px) {
    .product-search-input {
        width: 100%;
    }

    .product-table-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================
   Policies & Legal Page Styles
   ============================================= */

.policy-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(36, 71, 156, 0.1);
    border-color: rgba(36, 71, 156, 0.15);
}

.policy-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173070 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.policy-icon-circle.orange {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #c4441a 100%);
}

.policy-icon-circle.purple {
    background: linear-gradient(135deg, #7553B5 0%, #4d3080 100%);
}

.policy-icon-circle.green {
    background: linear-gradient(135deg, #198754 0%, #0d5c3a 100%);
}

.policy-icon-circle.red {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
}

.policy-card-tag {
    display: inline-block;
    background: rgba(36, 71, 156, 0.08);
    color: var(--primary-blue);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.policy-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.policy-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.policy-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(36, 71, 156, 0.12) 0%, transparent 100%);
    margin: 20px 0;
}

.legal-notice-box {
    background: linear-gradient(135deg, rgba(36, 71, 156, 0.04) 0%, rgba(243, 108, 69, 0.04) 100%);
    border: 1px solid rgba(36, 71, 156, 0.1);
    border-radius: 14px;
    padding: 28px 30px;
}

.policy-summary-bar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173070 100%);
    border-radius: 12px;
    padding: 22px 28px;
}

.policy-stat {
    text-align: center;
    color: #fff;
    padding: 0 16px;
}

.policy-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 4px;
}

.policy-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

/* =============================================
   News & Media Page Styles
   ============================================= */

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(36, 71, 156, 0.12);
}

.news-card-img-wrapper {
    height: 210px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #173070 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.news-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.8px;
}

.news-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-date i {
    color: var(--accent-orange);
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-excerpt {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.news-card-footer {
    border-top: 1px solid #f5f5f5;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-source {
    font-size: 0.72rem;
    color: #aaa;
}

/* Milestone Timeline */
.milestone-timeline {
    position: relative;
    padding-left: 30px;
}

.milestone-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
}

.milestone-item {
    position: relative;
    padding: 0 0 32px 24px;
}

.milestone-item:last-child {
    padding-bottom: 0;
}

.milestone-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(36, 71, 156, 0.2);
}

.milestone-dot.orange {
    background: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(243, 108, 69, 0.2);
}

.milestone-year {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.milestone-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.milestone-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   Adverse Event Reporting (Pharmacovigilance) Page Styles
   ============================================= */

.report-contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.report-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(36, 71, 156, 0.08);
    border-color: rgba(36, 71, 156, 0.12);
}

.report-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(36, 71, 156, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.report-contact-icon.orange {
    background: rgba(243, 108, 69, 0.08);
    color: var(--accent-orange);
}

.report-contact-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.report-contact-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 6px;
}

.report-contact-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.2s ease;
    word-break: break-all;
}

.report-contact-value:hover {
    color: var(--accent-orange);
}

.report-contact-sublabel {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.report-contact-link {
    font-size: 0.72rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.report-contact-link:hover {
    gap: 8px;
    color: var(--primary-blue);
}

.report-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.report-commitment-banner {
    background: #f4f6fa;
    border-radius: 12px;
    padding: 18px 24px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dark);
    border: 1px solid #eef1f6;
}

/* =============================================
   Exact Adverse Event Reporting Page Layout
   ============================================= */

.reporting-page-bg {
    background-color: #f7f9fc;
}

.reporting-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reporting-header {
    margin-bottom: 50px;
}

.reporting-header .section-tag {
    color: #f36c45;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.reporting-header h2 {
    color: #1a365d;
    font-weight: 800;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.reporting-header p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

.reporting-contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    height: calc(50% - 12px);
}

.reporting-contact-card:last-child {
    margin-bottom: 0;
}

.reporting-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #fff3f0;
    color: #f36c45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reporting-contact-details {
    display: flex;
    flex-direction: column;
}

.reporting-card-label {
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.reporting-card-value {
    color: #1a365d;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.reporting-card-value:hover {
    color: #f36c45;
}

.reporting-card-link {
    color: #f36c45;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.reporting-card-link:hover {
    gap: 8px;
}

.reporting-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 35px;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #1a365d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reporting-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.reporting-info-header i {
    color: #1a365d;
    font-size: 1.4rem;
}

.reporting-info-header h3 {
    color: #1a365d;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0;
}

.reporting-info-body {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.reporting-policy-box {
    background-color: #f1f5f9;
    border-radius: 6px;
    padding: 16px 20px;
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reporting-policy-box a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 700;
}

.reporting-policy-box a:hover {
    text-decoration: underline;
}

.reporting-footnote {
    color: #64748b;
    font-size: 0.78rem;
    margin-top: auto;
    margin-bottom: 0;
}

.reporting-safety-banner {
    background-color: #f1f5f9;
    border-radius: 8px;
    padding: 14px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #1a365d;
    font-weight: 700;
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reporting-safety-banner i {
    color: #f36c45;
}

/* =============================================
   Product Detail Page Styles
   ============================================= */

.product-detail-bg {
    background-color: #ffffff !important;
    padding-top: 150px;
}

.product-detail-container {
    max-width: 1140px;
    margin: 0 auto;
}

.category-badge {
    background-color: #f36c45;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.product-detail-title {
    color: #1a365d;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.strength-badge {
    background-color: #1a365d;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 30px;
}

.product-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.spec-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.spec-list li {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.spec-list strong {
    color: #1a365d;
    width: 170px;
    display: inline-block;
    font-weight: 600;
}

.doc-link {
    color: #f36c45;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    transition: gap 0.2s ease;
}

.doc-link:hover {
    color: #1a365d;
    gap: 10px;
}

.doc-link i {
    font-size: 0.8rem;
}

/* Specification Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.spec-table th {
    color: #1a365d;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 10px;
    border-bottom: 2px solid #1a365d;
    text-align: left;
}

.spec-table td {
    padding: 16px 10px;
    font-size: 0.9rem;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
}

/* Right Side Branding Card */
.brand-box-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-box-card img {
    max-width: 260px;
    margin-bottom: 20px;
}

.brand-box-subtitle {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a365d;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 30px;
    transition: transform 0.2s ease;
}

.btn-back:hover {
    color: #f36c45;
    transform: translateX(-4px);
}