﻿:root {
    --brand-primary: #2F80C9;
    --brand-secondary: #49B6E8;
    --brand-accent: #F39A4A;
    --brand-highlight: #EE6658;
    --bg-base: #F8FBFD;
    --bg-section: #EEF6FB;
    --text-heading: #183B56;
    --text-body: #5B7083;
}

/* HERO SECTION */
.hero-section {
    background-image: url('../images/banner/b-bg.jpg');
    /*background: linear-gradient(135deg, var(--bg-base), var(--bg-section));*/
    padding: 55px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .hero-section:after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(to left, rgba(0, 0, 0, 0) 10%, rgb(255 255 255)) -26%;
    }
/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-body);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Title */
.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
}

    .hero-title span {
        color: var(--brand-primary);
    }

/* Subtext */
.hero-subtext {
    margin-top: 15px;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    min-width: 120px;
    text-align: center;
}

    .stat-box h3 {
        color: var(--brand-primary);
        margin: 0;
        font-size: 22px;
    }

    .stat-box p {
        margin: 5px 0 0;
        font-size: 13px;
        color: var(--text-body);
    }

/* Product Card */
.product-showcase-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    max-width: 380px;
    margin: auto;
}

.product-tag {
    display: inline-block;
    background: var(--brand-accent);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.img-placeholder {
    height: 200px;
    background: var(--bg-section);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    margin-bottom: 15px;
}

.hero-btn {
    background: var(--brand-primary);
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
        text-align: center;
    }

    .hero-subtext {
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .product-showcase-card {
        margin-top: 40px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fbfd;
}

/* =========================================
TOP BAR
========================================== */

.bi-topbar {
    background: #ffffff;
    border-bottom: 1px solid #edf2f7;
    padding: 12px 0;
}

.bi-topbar-left,
.bi-topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bi-topbar-item {
    font-size: 15px;
    color: #5b7083;
    margin-right: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

    .bi-topbar-item:last-child {
        margin-right: 0;
    }

    .bi-topbar-item i,
    .bi-topbar-item svg {
        color: #2f80c9;
        margin-right: 10px;
        font-size: 15px;
    }

.bi-topbar-right {
    justify-content: flex-end;
}

/* =========================================
MAIN HEADER
========================================== */

.bi-header {
    background: #fff;
    padding: 22px 0;
    box-shadow: 0 10px 35px rgba(47,128,201,0.06);
    border-radius: 0 0 25px 25px;
}

.bi-navbar {
    padding: 0;
}

.bi-logo img {
    max-height: 58px;
}

.bi-nav-menu {
    margin-left: 60px;
}

    .bi-nav-menu .nav-item {
        margin: 0 14px;
    }

    .bi-nav-menu .nav-link {
        color: #183b56 !important;
        font-size: 15px;
        font-weight: 500;
        padding: 10px 0 !important;
        position: relative;
        transition: all .3s ease;
    }

        .bi-nav-menu .nav-link:hover,
        .bi-nav-menu .nav-link.active {
            color: #2f80c9 !important;
        }

            .bi-nav-menu .nav-link.active:after {
                content: '';
                position: absolute;
                left: 0;
                bottom: -8px;
                width: 100%;
                height: 3px;
                background: #2f80c9;
                border-radius: 10px;
            }

/* =========================================
HEADER ACTIONS
========================================== */

.bi-header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.bi-search-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #dfe9f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f80c9;
    font-size: 18px;
    margin-right: 18px;
    transition: all .3s ease;
    background: #fff;
}

    .bi-search-btn:hover {
        background: #2f80c9;
        color: #fff;
        text-decoration: none;
    }

.bi-quote-btn {
    background: linear-gradient(135deg,#2f80c9,#49b6e8);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 14px;
    font-size: 15px;
    margin-top: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(47,128,201,0.20);
}

    .bi-quote-btn i {
        margin-left: 12px;
    }

    .bi-quote-btn:hover {
        text-decoration: none;
        transform: translateY(-2px);
        color: #fff !important;
    }

/* =========================================
DROPDOWN
========================================== */

.dropdown-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 15px;
    margin-top: 20px;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15px;
    color: #183b56;
}

    .dropdown-item:hover {
        background: #eef6fb;
        color: #2f80c9;
    }

/* =========================================
MOBILE
========================================== */

.navbar-toggler {
    border: none;
    padding: 0;
}

    .navbar-toggler:focus {
        outline: none;
    }

    .navbar-toggler i {
        font-size: 28px;
        color: #183b56;
    }

@media(max-width:991px) {

    .bi-topbar {
        display: none;
    }

    .bi-header {
        padding: 18px 0;
        border-radius: 0 0 20px 20px;
    }

    .bi-logo img {
        max-height: 48px;
    }

    .bi-nav-menu {
        margin-left: 0;
        margin-top: 25px;
    }

        .bi-nav-menu .nav-item {
            margin: 0;
        }

        .bi-nav-menu .nav-link {
            padding: 14px 0 !important;
        }

    .bi-header-actions {
        margin-top: 20px;
        width: 100%;
    }

    .bi-search-btn {
        width: 48px;
        height: 48px;
    }

    .bi-quote-btn {
        padding: 13px 24px;
    }
}

.trust-bar {
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    padding: 22px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

/* Wrapper */
.trust-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

/* Item */
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: default;
}

    .trust-item:hover {
        transform: translateY(-3px);
    }

/* Icon */
.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2F80C9;
    box-shadow: inset 0 0 0 1px rgba(47,128,201,0.15);
}

/* Text */
.trust-item h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #183B56;
}

.trust-item span {
    font-size: 12px;
    color: #5B7083;
}

/* Divider */
.trust-divider {
    width: 1px;
    height: 35px;
    background: #e6edf3;
}

/* Mobile */
@media (max-width: 768px) {
    .trust-wrapper {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        flex: 0 0 auto;
        background: #fff;
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        margin-right: 10px;
    }
}
/* SECTION BASE */
.product-categories {
    padding: 50px 0;
    background: #f8fbfd;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 45px;
}

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #183B56;
        letter-spacing: -0.5px;
    }

    .section-header p {
        color: #5B7083;
        font-size: 15px;
    }

/* IMAGE CARD */
.cat-image-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: 0.4s ease;
}

    .cat-image-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    }

/* IMAGE BLOCK */
.cat-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .cat-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s ease;
    }

.cat-image-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    opacity: 0.55;
}

    .overlay.pharma {
        background: linear-gradient(135deg, #2F80C9, #49B6E8);
    }

    .overlay.chemical {
        background: linear-gradient(135deg, #F39A4A, #EE6658);
    }

    .overlay.medical {
        background: linear-gradient(135deg, #49B6E8, #2F80C9);
    }

/* CONTENT */
.cat-content {
    padding: 22px;
    /*min-height: 235px;*/
    max-height: 100%;
}

    .cat-content h4 {
        font-size: 20px;
        font-weight: 700;
        color: #183B56;
    }

    .cat-content p {
        font-size: 15px;
        color: #5B7083;
        margin-top: 8px;
        line-height: 1.6;
    }

/* META */
.cat-meta {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cat-meta span {
        font-size: 13px;
        color: #2F80C9;
        font-weight: 600;
    }

    .cat-meta a {
        font-size: 13px;
        font-weight: 700;
        color: #183B56;
        text-decoration: none;
        transition: 0.3s;
    }

        .cat-meta a:hover {
            color: #2F80C9;
        }

/* MOBILE */
@media (max-width: 768px) {
    .product-categories {
        padding: 30px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .cat-img {
        height: 180px;
    }
}
/* SECTION */
.why-us-section {
    padding: 65px 0;
    background: radial-gradient(circle at top right, rgba(243,154,74,0.06), transparent 28%), radial-gradient(circle at bottom left, rgba(73,182,232,0.06), transparent 25%), linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    position: relative;
    overflow: hidden;
}

/* HEADING */
.why-heading .mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #2F80C9;
    margin-bottom: 16px;
}

    .why-heading .mini-tag::before {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #F39A4A;
        box-shadow: 0 0 12px rgba(243,154,74,0.4);
    }

.why-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #183B56;
    letter-spacing: -1px;
}

.why-heading p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #5B7083;
    max-width: 540px;
}

/* TRUST FEATURES */
.trust-feature {
    display: flex;
    gap: 22px;
    margin-top: 35px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(24,59,86,0.06);
    transition: 0.3s ease;
}

/* NUMBER */
.trust-number {
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2F80C9, #49B6E8);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 35px rgba(47,128,201,0.18);
    position: relative;
    overflow: hidden;
}

    .trust-number::after {
        content: "";
        position: absolute;
        width: 45px;
        height: 45px;
        background: rgb(255 255 255 / 18%);
        border-radius: 50%;
        top: -15px;
        right: -15px;
    }

/* CONTENT */
.trust-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #183B56;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

.trust-feature:hover .trust-content h4 {
    color: #2F80C9;
}

.trust-content p {
    /*font-size: 15px;*/
    line-height: 1.7;
    color: #5B7083;
    margin: 0;
}

/* DASHBOARD */
.stats-dashboard {
    position: relative;
    padding-left: 40px;
}

/* MAIN CARD */
.main-stats-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(24,59,86,0.08), 0 10px 30px rgba(47,128,201,0.08);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

    /* TOP RIGHT GLOW */
    .main-stats-card::before {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        background: radial-gradient( circle, rgba(73,182,232,0.12), transparent 70% );
        top: -120px;
        right: -80px;
    }

    /* ORANGE ACCENT */
    .main-stats-card::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        background: rgba(243,154,74,0.10);
        border-radius: 50%;
        bottom: -40px;
        left: -30px;
    }

.img-box {
    border-radius: 10px;
    overflow: hidden;
}
/* TOP LABEL */
.stats-top span {
    font-size: 13px;
    font-weight: 600;
    color: #5B7083;
}

/* BIG STAT */
.big-stat {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

    .big-stat h2 {
        font-size: 82px;
        line-height: 1;
        font-weight: 700;
        background: linear-gradient(135deg, #183B56, #2F80C9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .big-stat p {
        font-size: 15px;
        color: #5B7083;
    }

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

/* MINI STAT */
.mini-stat {
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(47,128,201,0.08);
    transition: 0.3s ease;
}

    .mini-stat:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(47,128,201,0.10);
        border-color: rgba(243,154,74,0.22);
    }

    .mini-stat h4 {
        font-size: 28px;
        font-weight: 700;
        color: #2F80C9;
        margin-bottom: 4px;
    }

    .mini-stat span {
        font-size: 15px;
        color: #5B7083;
    }

/* FLOATING CARD */
.floating-card {
    position: absolute;
    bottom: -25px;
    right: -10px;
    background: linear-gradient(135deg, #183B56, #2F80C9);
    color: #fff;
    padding: 18px 26px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(24,59,86,0.22);
    z-index: 3;
    overflow: hidden;
}

    .floating-card::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        background: rgba(243,154,74,0.22);
        border-radius: 50%;
        right: -30px;
        top: -30px;
    }

/* MOBILE */
@media (max-width: 991px) {

    .why-heading h2 {
        font-size: 32px;
    }

    .stats-dashboard {
        padding-left: 0;
        margin-top: 60px;
    }

    .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 768px) {

    .why-us-section {
        padding: 40px 0;
    }

    .why-heading h2 {
        font-size: 28px;
    }

    .main-stats-card {
        padding: 25px;
    }

    .big-stat h2 {
        font-size: 60px;
    }

    .stats-grid {
        gap: 12px;
    }

    .mini-stat {
        padding: 18px;
    }

    .trust-feature {
        gap: 16px;
    }

    .trust-number {
        min-width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 16px;
    }
}
/* SECTION */
.export-process-section {
    padding: 65px 0;
    background: radial-gradient(circle at top left, rgba(73,182,232,0.05), transparent 28%), radial-gradient(circle at bottom right, rgba(243,154,74,0.06), transparent 30%), #ffffff;
    position: relative;
    overflow: hidden;
}

/* HEADER */
.process-header {
    max-width: 760px;
    margin: auto auto 70px;
}

.process-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F80C9;
    margin-bottom: 16px;
}

    .process-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #F39A4A;
        border-radius: 50%;
    }

.process-header h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #183B56;
    letter-spacing: -1px;
}

.process-header p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #5B7083;
}

/* TIMELINE */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

/* CONNECTOR LINE */
.timeline-line {
    position: absolute;
    top: 34px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: linear-gradient( 90deg, rgba(47,128,201,0.18), rgba(243,154,74,0.22) );
    z-index: 1;
}

/* STEP */
.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
}

/* NUMBER */
.step-number {
    width: 68px;
    height: 68px;
    margin: auto;
    border-radius: 22px;
    background: linear-gradient(135deg, #2F80C9, #49B6E8);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(47,128,201,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
}

    .step-number::before {
        content: "";
        position: absolute;
        width: 45px;
        height: 45px;
        background: rgba(243,154,74,0.22);
        border-radius: 50%;
        top: -15px;
        right: -15px;
    }

/* CARD */
.step-card {
    margin-top: 26px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 28px 24px;
    min-height: 220px;
    box-shadow: 0 25px 50px rgba(24,59,86,0.07), 0 10px 20px rgba(47,128,201,0.05);
    border: 1px solid rgba(255,255,255,0.6);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

    /* TOP GLOW */
    .step-card::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        background: rgba(73,182,232,0.08);
        border-radius: 50%;
        top: -50px;
        right: -40px;
    }

/* HOVER */
.process-step:hover .step-card {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(24,59,86,0.10), 0 18px 30px rgba(243,154,74,0.10);
}

/* TEXT */
.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #183B56;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #5B7083;
    margin: 0;
}

/* MOBILE */
@media (max-width: 991px) {

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-line {
        width: 2px;
        height: 100%;
        left: 33px;
        top: 0;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        min-width: 68px;
        margin: 0;
    }

    .step-card {
        margin-top: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .export-process-section {
        padding: 55px 0;
    }

    .process-header h2 {
        font-size: 30px;
    }

    .process-header p {
        font-size: 15px;
    }

    .step-card {
        padding: 22px;
    }

        .step-card h4 {
            font-size: 18px;
        }

    .step-number {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 16px;
        min-width: 58px;
    }
}

/*=================================
GLOBAL REACH
=================================*/

.ptg-global-reach-section {
    padding: 1em 0 4em;
    background: #fff;
}

.ptg-global-content h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 25px;
}

.ptg-global-content p {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 20px;
}

.ptg-reach-points {
    margin-top: 35px;
}

.ptg-reach-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

    .ptg-reach-item span {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(73,182,232,.12);
        color: var(--primary);
        font-weight: 700;
    }

    .ptg-reach-item p {
        margin: 0;
        color: var(--heading);
        font-weight: 600;
    }

/* VISUAL */

.ptg-global-visual {
    position: relative;
}

    .ptg-global-visual img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 30px 80px rgba(24,59,86,.10);
    }

.ptg-export-stat {
    position: absolute;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(24,59,86,.12);
}

    .ptg-export-stat h4 {
        margin: 0;
        font-size: 32px;
        font-weight: 800;
        color: var(--primary);
    }

    .ptg-export-stat span {
        font-size: 13px;
        color: var(--text);
    }

.stat-1 {
    top: 30px;
    left: -20px;
}

.stat-2 {
    bottom: 30px;
    right: -20px;
}

@media(max-width:991px) {

    .ptg-global-content {
        margin-bottom: 50px;
    }

    .stat-1 {
        left: 20px;
    }

    .stat-2 {
        right: 20px;
    }
}

@media(max-width:767px) {

    .ptg-global-reach-section {
        padding: 55px 0;
    }

    .ptg-global-content h2 {
        font-size: 28px;
    }

    .ptg-export-stat {
        padding: 15px 18px;
    }

        .ptg-export-stat h4 {
            font-size: 24px;
        }
}



/* SECTION */
.export-markets-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(47,128,201,0.05), transparent 28%), radial-gradient(circle at bottom right, rgba(243,154,74,0.06), transparent 30%), #ffffff;
}

/* HEADER */
.markets-header {
    max-width: 760px;
    margin: auto auto 60px;
}

.markets-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F80C9;
    margin-bottom: 16px;
}

    .markets-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #F39A4A;
        border-radius: 50%;
    }

.markets-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #183B56;
    line-height: 1.2;
}

.markets-header p {
    font-size: 15px;
    color: #5B7083;
    margin-top: 14px;
    line-height: 1.8;
}

/* GRID */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* CARD */
.market-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    border: 1px solid rgba(47,128,201,0.06);
    transition: 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

    /* FLAG */
    .market-card img {
        width: 44px;
        height: 30px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        margin-bottom: 10px;
    }

    /* TEXT */
    .market-card span {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #183B56;
    }

    /* HOVER */
    .market-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(47,128,201,0.10), 0 10px 20px rgba(243,154,74,0.08);
        border-color: rgba(243,154,74,0.25);
    }

/* RESPONSIVE */
@media (max-width: 991px) {
    .markets-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .markets-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .export-markets-section {
        padding: 40px 0;
    }

    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* SECTION */
.premium-inquiry-section {
    position: relative;
    overflow: hidden;
}

/* WRAPPER */
.inquiry-wrapper {
    background: radial-gradient(circle at top left, rgba(73,182,232,0.05), transparent 30%), radial-gradient(circle at bottom right, rgba(243,154,74,0.07), transparent 32%), linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
    /* border-radius: 40px;*/
    padding: 65px 0;
    position: relative;
    /* overflow: hidden;*/
    /* box-shadow: 0 40px 80px rgba(24,59,86,0.08), 0 20px 40px rgba(47,128,201,0.05);*/
}

    /* TOP GLOW */
    .inquiry-wrapper::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(73,182,232,0.08);
        border-radius: 50%;
        top: -180px;
        right: -120px;
    }

/* BOTTOM GLOW */
/*.inquiry-wrapper::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(243,154,74,0.08);
        border-radius: 50%;
        bottom: -120px;
        left: -80px;
    }*/

/* LEFT */
.inquiry-left {
    position: relative;
    z-index: 2;
}

/* LABEL */
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #2F80C9;
    margin-bottom: 18px;
}

    .mini-label::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #F39A4A;
        border-radius: 50%;
    }

/* HEADING */
.inquiry-left h2 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    color: #183B56;
    letter-spacing: -1px;
}

.inquiry-left p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
    color: #5B7083;
    max-width: 480px;
}

/* SUPPORT CARD */
.support-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 28px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(47,128,201,0.08);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

    .support-card:hover {
        transform: translateX(6px);
        box-shadow: 0 20px 40px rgba(24,59,86,0.06), 0 10px 20px rgba(243,154,74,0.06);
    }

/* DOT */
.support-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #49B6E8;
    margin-top: 7px;
    box-shadow: 0 0 18px rgba(73,182,232,0.45);
}

    .support-dot.orange {
        background: #F39A4A;
        box-shadow: 0 0 18px rgba(243,154,74,0.45);
    }

/* SUPPORT TEXT */
.support-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #183B56;
    margin-bottom: 5px;
}

.support-card span {
    font-size: 13px;
    line-height: 1.7;
    color: #5B7083;
}

/* FORM CARD */
.premium-form-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    border-radius: 32px;
    padding: 45px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 30px 60px rgba(24,59,86,0.07), 0 15px 30px rgba(47,128,201,0.05);
}

/* TOP */
.form-top h3 {
    font-size: 30px;
    font-weight: 800;
    color: #183B56;
}

.form-top p {
    margin-top: 10px;
    font-size: 15px;
    color: #5B7083;
}

/* FORM GROUP */
.modern-group {
    margin-top: 22px;
}

    .modern-group label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #183B56;
        margin-bottom: 10px;
    }

    /* INPUT */
    .modern-group input,
    .modern-group select,
    .modern-group textarea {
        width: 100%;
        border: none;
        background: #f8fbfd;
        padding: 16px 18px;
        border-radius: 16px;
        font-size: 15px;
        color: #183B56;
        transition: 0.3s ease;
        border: 1px solid transparent;
    }

        /* FOCUS */
        .modern-group input:focus,
        .modern-group select:focus,
        .modern-group textarea:focus {
            outline: none;
            background: #ffffff;
            border-color: rgba(47,128,201,0.25);
            box-shadow: 0 0 0 4px rgba(73,182,232,0.10);
        }

/* BUTTON */
.premium-submit-btn {
    width: 100%;
    margin-top: 28px;
    border: none;
    padding: 17px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #183B56, #2F80C9 );
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: 0.35s ease;
    box-shadow: 0 20px 40px rgba(24,59,86,0.20);
}

    /* HOVER */
    .premium-submit-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 60px rgba(24,59,86,0.28);
    }

/* RESPONSIVE */
@media (max-width: 991px) {

    .inquiry-wrapper {
        padding: 40px;
    }

    .premium-form-card {
        margin-top: 50px;
    }

    .inquiry-left h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .premium-inquiry-section {
        padding: 40px 0;
    }

    .inquiry-wrapper {
        padding: 0;
        border-radius: 28px;
    }

    .premium-form-card {
        padding: 25px;
        border-radius: 24px;
    }

    .inquiry-left h2 {
        font-size: 30px;
    }

    .form-top h3 {
        font-size: 24px;
    }
}

/* FOOTER */
.lux-footer {
    position: relative;
    background: radial-gradient(circle at top left, rgba(73,182,232,0.10), transparent 28%), radial-gradient(circle at bottom right, rgba(243,154,74,0.10), transparent 30%), linear-gradient(135deg, #0c2233, #183B56);
    overflow: hidden;
}

/* TOP CTA */
.footer-cta-wrap {
    padding-top: 70px;
}

/* CTA BOX */
.footer-cta {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 50px 60px;
    border-radius: 36px;
    background: linear-gradient( 135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04) );
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

    /* GLOW */
    .footer-cta::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(73,182,232,0.14);
        border-radius: 50%;
        top: -140px;
        right: -80px;
    }

/* LABEL */
.cta-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #49B6E8;
    margin-bottom: 16px;
}

    .cta-content span::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #F39A4A;
    }

/* TITLE */
.cta-content h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    max-width: 700px;
    margin: 0;
}

/* BUTTON */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 16px;
    background: linear-gradient( 135deg, #2F80C9, #49B6E8 );
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s ease;
    box-shadow: 0 20px 40px rgba(47,128,201,0.25);
}

    .footer-cta-btn:hover {
        transform: translateY(-4px);
        text-decoration: none;
        color: #fff;
        box-shadow: 0 28px 50px rgba(47,128,201,0.35);
    }

/* MAIN */
.lux-footer-main {
    padding: 90px 0 60px;
}

/* BRAND */
.lux-brand img {
    max-width: 190px;
    margin-bottom: 28px;
}

.lux-brand p {
    max-width: 420px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 2;
}

/* BADGES */
.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* BADGE */
.badge-item {
    padding: 10px 18px;
    border-radius: 40px;
    background: linear-gradient( 135deg, rgba(47,128,201,0.16), rgba(243,154,74,0.14) );
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

/* COLUMN */
.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

/* LIST */
.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 16px;
    }

        /* LINKS */
        .footer-column ul li a {
            color: rgba(255,255,255,0.68);
            font-size: 15px;
            text-decoration: none;
            transition: 0.3s ease;
        }

            .footer-column ul li a:hover {
                color: #49B6E8;
                padding-left: 5px;
            }

/* CONTACT */
.contact-list li {
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.8;
}

/* BOTTOM */
.lux-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}

    .lux-footer-bottom .opacity {
        opacity: .4;
    }
/* FLEX */
.bottom-flex {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    /* TEXT */
    .bottom-flex p {
        margin: 0;
        color: rgba(255,255,255,0.52);
        font-size: 13px;
    }

/* RESPONSIVE */
@media (max-width: 991px) {

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .footer-column {
        margin-top: 45px;
    }
}

@media (max-width: 768px) {

    .footer-cta-wrap {
        padding-top: 40px;
    }

    .footer-cta {
        padding: 30px;
        border-radius: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .lux-footer-main {
        padding: 70px 0 40px;
    }

    .bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}
/*-------------------------------------------
    Inner page CSS
--------------------------------------------*/

/* =========================
ROOT VARIABLES
========================= */

:root {
    --primary: #2F80C9;
    --secondary: #49B6E8;
    --accent: #F39A4A;
    --highlight: #EE6658;
    --background: #F8FBFD;
    --section-bg: #EEF6FB;
    --heading: #183B56;
    --text: #5B7083;
}


/* =========================
INNER HERO
========================= */

.ptg-inner-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;
    background: radial-gradient(circle at top left, rgba(73, 182, 232, 0.12), transparent 28%), radial-gradient(circle at bottom right, rgba(243, 154, 74, 0.10), transparent 30%), linear-gradient(180deg, #f8f4f1 0%, #f8fbfd 100%);
}

    /* GLOW */
    .ptg-inner-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(73,182,232,0.08);
        top: -240px;
        right: -160px;
    }

/* CONTENT */
.ptg-inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* TAG */
.ptg-page-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 20px;
}

    .ptg-page-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
    }

/* HEADING */
.ptg-inner-hero h1 {
    font-size: 36px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--heading);
    max-width: 900px;
    margin: auto;
    letter-spacing: -2px;
}

/* BREADCRUMB */
.ptg-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

    .ptg-breadcrumb a,
    .ptg-breadcrumb p {
        margin: 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--text);
    }

    .ptg-breadcrumb a {
        text-decoration: none;
        transition: .3s ease;
    }

        .ptg-breadcrumb a:hover {
            color: var(--primary);
        }

    .ptg-breadcrumb span {
        color: #b7c3cf;
    }


/* =========================
ABOUT SECTION
========================= */

.ptg-about-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
}

/* IMAGE WRAP */
.ptg-about-image-wrap {
    position: relative;
}

    /* IMAGE */
    .ptg-about-image-wrap img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        border-radius: 36px;
        box-shadow: 0 40px 80px rgba(24,59,86,0.10);
    }

/* FLOAT CARD */
.ptg-floating-card {
    position: absolute;
    left: -30px;
    bottom: 40px;
    width: 240px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 60px rgba(24,59,86,0.10);
}

    /* NUMBER */
    .ptg-floating-card h4 {
        font-size: 52px;
        font-weight: 800;
        color: var(--heading);
        margin-bottom: 8px;
    }

    /* TEXT */
    .ptg-floating-card p {
        margin: 0;
        font-size: 13px;
        line-height: 1.8;
        color: var(--text);
    }

/* CONTENT */
.ptg-about-content {
    padding-left: 50px;
}

/* SECTION TAG */
.ptg-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 20px;
}

    .ptg-section-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
    }

/* TITLE */
.ptg-about-content h2 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -1px;
    margin-bottom: 28px;
}

/* TEXT */
.ptg-about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 18px;
}

/* POINTS */
.ptg-about-points {
    margin-top: 35px;
}

/* ITEM */
.ptg-point-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

/* DOT */
.ptg-point-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--primary), var(--accent) );
    margin-top: 6px;
    flex-shrink: 0;
}

/* TEXT */
.ptg-point-item span {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    color: var(--heading);
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px) {

    .ptg-inner-hero h1 {
        font-size: 42px;
    }

    .ptg-about-content h2 {
        font-size: 34px;
    }
}


@media(max-width:991px) {

    .ptg-inner-hero {
        padding: 140px 0 90px;
    }

        .ptg-inner-hero h1 {
            font-size: 44px;
        }

    .ptg-about-section {
        padding: 90px 0;
    }

    .ptg-about-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .ptg-about-image-wrap img {
        height: 540px;
    }

    .ptg-floating-card {
        left: 20px;
    }

    .ptg-about-content h2 {
        font-size: 38px;
    }
}


@media(max-width:767px) {

    .ptg-inner-hero {
        padding: 120px 0 80px;
    }

        .ptg-inner-hero h1 {
            font-size: 34px;
            letter-spacing: -1px;
        }

    .ptg-breadcrumb {
        margin-top: 20px;
    }

    .ptg-about-section {
        padding: 70px 0;
    }

    .ptg-about-image-wrap img {
        height: 420px;
        border-radius: 24px;
    }

    .ptg-floating-card {
        width: 210px;
        padding: 22px;
        border-radius: 22px;
    }

        .ptg-floating-card h4 {
            font-size: 38px;
        }

    .ptg-about-content h2 {
        font-size: 30px;
    }

    .ptg-about-content p {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* =========================
SECTION HEAD
========================= */

.ptg-section-head {
    margin-bottom: 60px;
}

    .ptg-section-head h2 {
        font-size: 36px;
        line-height: 1.2;
        font-weight: 800;
        color: var(--heading);
        margin-bottom: 18px;
    }

    .ptg-section-head p {
        max-width: 650px;
        margin: auto;
        font-size: 15px;
        line-height: 1.9;
        color: var(--text);
    }


/* =========================
WHY SECTION
========================= */

.ptg-why-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7fafc 0%, var(--background) 100%);
}

/* CARD */
.ptg-why-card {
    position: relative;
    height: 100%;
    padding: 40px;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    transition: .35s ease;
    border: 1px solid rgba(24,59,86,0.05);
    box-shadow: 0 20px 50px rgba(24,59,86,0.05);
}

    .ptg-why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 70px rgba(24,59,86,0.10);
    }

/* ICON */
.ptg-why-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}

    .ptg-why-icon.orange {
        background: linear-gradient( 135deg, var(--accent), #ffb36c );
    }

/* TITLE */
.ptg-why-card h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
}

/* TEXT */
.ptg-why-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    margin: 0;
}


/* =========================
MISSION SECTION
========================= */

.ptg-mission-section {
    padding: 120px 0;
    background: #fff;
}

/* CARD */
.ptg-mission-card {
    position: relative;
    height: 100%;
    padding: 50px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff, #f8fbfd );
    box-shadow: 0 30px 70px rgba(24,59,86,0.06);
}

    /* GLOW */
    .ptg-mission-card::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(73,182,232,0.08);
        top: -80px;
        right: -70px;
    }

    .ptg-mission-card.orange::before {
        background: rgba(243,154,74,0.12);
    }

    /* LABEL */
    .ptg-mission-card span {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--primary);
    }

    /* TITLE */
    .ptg-mission-card h3 {
        font-size: 30px;
        line-height: 1.3;
        font-weight: 800;
        color: var(--heading);
        margin-bottom: 20px;
    }

    /* TEXT */
    .ptg-mission-card p {
        font-size: 15px;
        line-height: 2;
        color: var(--text);
        margin: 0;
    }


/* =========================
RESPONSIVE
========================= */

@media(max-width:991px) {

    .ptg-why-section,
    .ptg-mission-section {
        padding: 90px 0;
    }
}


@media(max-width:767px) {

    .ptg-section-head h2 {
        font-size: 28px;
    }

    .ptg-why-card,
    .ptg-mission-card {
        padding: 30px;
        border-radius: 24px;
    }

        .ptg-why-card h4 {
            font-size: 22px;
        }

        .ptg-mission-card h3 {
            font-size: 26px;
        }
}

/* =========================================
CONTACT HERO
========================================== */

.ptg-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 100px;
    background: radial-gradient(circle at top left, rgba(73,182,232,0.12), transparent 28%), radial-gradient(circle at bottom right, rgba(243,154,74,0.10), transparent 30%), linear-gradient( 180deg, #ffffff 0%, #f8fbfd 100% );
}

    .ptg-contact-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(73,182,232,0.08);
        top: -220px;
        right: -160px;
    }

/* CONTENT */
.ptg-contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* HEADING */
.ptg-contact-hero h1 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--heading);
    max-width: 760px;
    margin: auto;
    letter-spacing: -1px;
}


/* =========================================
CONTACT INFO
========================================== */

.ptg-contact-info-section {
    position: relative;
    margin-top: -50px;
    z-index: 3;
}

/* CARD */
.ptg-contact-info-card {
    height: 100%;
    padding: 40px 30px;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    transition: .35s ease;
    box-shadow: 0 25px 60px rgba(24,59,86,0.08);
}

    .ptg-contact-info-card:hover {
        transform: translateY(-8px);
    }

/* ICON */
.ptg-contact-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 25px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}

    .ptg-contact-icon.orange {
        background: linear-gradient( 135deg, var(--accent), #ffb56f );
    }

/* TITLE */
.ptg-contact-info-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 14px;
}

/* TEXT */
.ptg-contact-info-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}


/* =========================================
CONTACT FORM SECTION
========================================== */

.ptg-contact-form-section {
    padding: 80px 0;
}

/* WRAPPER */
.ptg-contact-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    background: linear-gradient( 180deg, #ffffff, #f8fbfd );
    padding: 70px;
    box-shadow: 0 35px 80px rgba(24,59,86,0.08);
}

    /* GLOW */
    .ptg-contact-wrapper::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(73,182,232,0.08);
        top: -140px;
        right: -100px;
    }

/* CONTENT */
.ptg-contact-content {
    position: relative;
    z-index: 2;
}

    .ptg-contact-content h2 {
        font-size: 34px;
        line-height: 1.25;
        font-weight: 800;
        color: var(--heading);
        margin-bottom: 22px;
    }

    .ptg-contact-content p {
        font-size: 15px;
        line-height: 2;
        color: var(--text);
        margin-bottom: 30px;
    }

/* POINTS */
.ptg-contact-point {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* DOT */
.ptg-contact-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}

    .ptg-contact-dot.orange {
        background: linear-gradient( 135deg, var(--accent), #ffb56f );
    }

/* TEXT */
.ptg-contact-point span {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
}

/* FORM CARD */
.ptg-contact-form-card {
    position: relative;
    z-index: 2;
    padding: 45px;
    border-radius: 34px;
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 60px rgba(24,59,86,0.08);
}

/* GROUP */
.ptg-form-group {
    margin-bottom: 24px;
}

    /* LABEL */
    .ptg-form-group label {
        display: block;
        margin-bottom: 10px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--heading);
    }

    /* INPUT */
    .ptg-form-group input,
    .ptg-form-group select,
    .ptg-form-group textarea {
        width: 100%;
        border: none;
        background: #edf2f6;
        border-radius: 18px;
        padding: 16px 18px;
        font-size: 14px;
        color: var(--heading);
        transition: .3s ease;
        border: 1px solid transparent;
    }

        /* FOCUS */
        .ptg-form-group input:focus,
        .ptg-form-group select:focus,
        .ptg-form-group textarea:focus {
            outline: none;
            background: #fff;
            border-color: rgba(47,128,201,0.20);
            box-shadow: 0 0 0 4px rgba(73,182,232,0.10);
        }

/* BUTTON */
.ptg-submit-btn {
    width: 100%;
    border: none;
    padding: 18px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    transition: .35s ease;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    box-shadow: 0 20px 40px rgba(47,128,201,0.22);
}

    .ptg-submit-btn:hover {
        transform: translateY(-4px);
    }


/* =========================================
RESPONSIVE
========================================== */

@media(max-width:991px) {

    .ptg-contact-hero {
        padding: 140px 0 90px;
    }

    .ptg-contact-wrapper {
        padding: 40px;
    }

    .ptg-contact-content {
        margin-bottom: 50px;
    }
}


@media(max-width:767px) {

    .ptg-contact-hero {
        padding: 120px 0 80px;
    }

        .ptg-contact-hero h1 {
            font-size: 28px;
        }

    .ptg-contact-info-card {
        padding: 30px 25px;
        border-radius: 24px;
    }

    .ptg-contact-wrapper {
        padding: 25px;
        border-radius: 28px;
    }

    .ptg-contact-form-card {
        padding: 25px;
        border-radius: 24px;
    }

    .ptg-contact-content h2 {
        font-size: 28px;
    }
}

/* =========================================
PRODUCT LIST SECTION
========================================== */

.ptg-product-list-section {
    padding: 65px 0;
    background: #fff;
}

/* =========================================
SIDEBAR
========================================== */

.ptg-product-sidebar {
    position: sticky;
    top: 120px;
}

.ptg-sidebar-box {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 25px 60px rgba(24,59,86,0.06);
}

    .ptg-sidebar-box h4 {
        font-size: 22px;
        font-weight: 700;
        color: var(--heading);
        margin-bottom: 25px;
    }

/* SEARCH */
.ptg-search-box input {
    width: 100%;
    border: none;
    background: var(--background);
    border-radius: 16px;
    padding: 15px 18px;
    font-size: 14px;
}

/* CATEGORY */
.ptg-category-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .ptg-category-list li {
        margin-bottom: 12px;
    }

        .ptg-category-list li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            border-radius: 16px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            color: var(--heading);
            background: #f8fbfd;
            transition: .3s ease;
        }

            .ptg-category-list li.active a,
            .ptg-category-list li a:hover {
                background: linear-gradient( 135deg, var(--primary), var(--secondary) );
                color: #fff;
            }

/* =========================================
TOPBAR
========================================== */

.ptg-product-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 24px 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(24,59,86,0.05);
}

    .ptg-product-topbar p {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
    }

    .ptg-product-topbar select {
        border: none;
        background: var(--background);
        border-radius: 14px;
        padding: 12px 18px;
        font-size: 14px;
    }

/* =========================================
PRODUCT CARD
========================================== */

.ptg-product-card {
    overflow: hidden;
    height: 100%;
    border-radius: 30px;
    background: #fff;
    transition: .35s ease;
    box-shadow: 0 25px 60px rgba(24,59,86,0.06);
}

    .ptg-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 80px rgba(24,59,86,0.10);
    }

/* IMAGE */
.ptg-product-thumb {
    position: relative;
    overflow: hidden;
}

    .ptg-product-thumb img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .5s ease;
    }

.ptg-product-card:hover .ptg-product-thumb img {
    transform: scale(1.08);
}

/* BADGE */
.ptg-product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 10px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}

    .ptg-product-badge.orange {
        background: linear-gradient( 135deg, var(--accent), #ffb56f );
    }

/* CONTENT */
.ptg-product-info {
    padding: 28px;
}

    /* TITLE */
    .ptg-product-info h3 {
        font-size: 22px;
        line-height: 1.4;
        font-weight: 700;
        color: var(--heading);
        margin-bottom: 14px;
    }

    /* TEXT */
    .ptg-product-info p {
        font-size: 14px;
        line-height: 1.9;
        color: var(--text);
        margin-bottom: 22px;
    }

/* BUTTON */
.ptg-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 14px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    transition: .35s ease;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}

    .ptg-product-link.orange {
        background: linear-gradient( 135deg, var(--accent), #ffb56f );
    }

    .ptg-product-link:hover {
        transform: translateY(-3px);
        color: #fff;
    }

/* =========================================
RESPONSIVE
========================================== */

@media(max-width:991px) {

    .ptg-product-list-section {
        padding: 90px 0;
    }

    .ptg-product-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}


@media(max-width:767px) {

    .ptg-product-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .ptg-sidebar-box,
    .ptg-product-card {
        border-radius: 22px;
    }

    .ptg-product-thumb img {
        height: 220px;
    }

    .ptg-product-info {
        padding: 22px;
    }

        .ptg-product-info h3 {
            font-size: 20px;
        }
}

/* =========================================
PRODUCT DETAIL HERO
========================================== */

.ptg-product-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;
    background: radial-gradient(circle at top left, rgba(73, 182, 232, 0.12), transparent 28%), radial-gradient(circle at bottom right, rgba(243, 154, 74, 0.10), transparent 30%), linear-gradient(180deg, #f8f4f1 0%, #f8fbfd 100%);
}

    .ptg-product-detail-hero::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(73, 182, 232, 0.08);
        top: -240px;
        right: -160px;
    }

.ptg-product-detail-hero-content {
    text-align: center;
}

.ptg-product-detail-hero h1 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 20px;
}


/* =========================================
DETAIL SECTION
========================================== */

.ptg-product-detail-section {
    padding: 75px 0 70px;
}

/* MAIN IMAGE */
.ptg-product-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 35px 80px rgba(24,59,86,0.10);
}

    .ptg-product-main-image img {
        width: 100%;
        height: 620px;
        object-fit: cover;
    }

/* BADGE */
.ptg-product-category-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 12px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}

/* =========================================
PRODUCT GALLERY
========================================== */
.product-gallery {
    width: 100%;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
}

.main-product-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 10px;
}

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Bottom Thumbnails */
.thumbnail-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

    .thumbnail-container::-webkit-scrollbar {
        height: 6px;
    }

.thumb-item {
    flex: 0 0 auto;
}

.thumbnail-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

    .thumbnail-image:hover,
    .thumbnail-image.active-thumb {
        border-color: #ff6a00;
    }

/* Mobile */
@media (max-width: 767px) {

    .gallery-nav {
        display: none;
    }

    .thumbnail-image {
        width: 70px;
        height: 70px;
    }

    .main-product-image {
        max-height: 350px;
    }
}
/* CONTENT */
.ptg-product-detail-content {
    padding-left: 40px;
}

/* TAG */
.ptg-product-mini-tag {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(73,182,232,0.12);
    margin-bottom: 22px;
}

/* TITLE */
.ptg-product-detail-content h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 20px;
}

/* DESC */
.ptg-product-short-desc {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 35px;
}

/* INFO LIST */
.ptg-product-info-list {
    border-top: 1px solid rgba(24,59,86,0.06);
}

.ptg-product-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(24,59,86,0.06);
}

    .ptg-product-info-item h5 {
        margin: 0;
        font-size: 15px;
        font-weight: 700;
        color: var(--heading);
    }

    .ptg-product-info-item p {
        margin: 0;
        font-size: 14px;
        color: var(--text);
    }


/* =========================================
DESCRIPTION SECTION
========================================== */

.ptg-product-description-section {
    padding: 0 0 120px;
}

/* BOX */
.ptg-product-description-box {
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px rgba(24,59,86,0.06);
}

/* HEAD */
.ptg-product-description-head {
    padding: 28px 35px;
    border-bottom: 1px solid rgba(24,59,86,0.06);
}

    .ptg-product-description-head h3 {
        margin: 0;
        font-size: 28px;
        font-weight: 800;
        color: var(--heading);
    }

/* CONTENT */
.ptg-product-description-content {
    padding: 35px;
}

    .ptg-product-description-content p {
        font-size: 15px;
        line-height: 2;
        color: var(--text);
        margin-bottom: 20px;
    }

/* FEATURES */
.ptg-product-features {
    margin-top: 35px;
}

.ptg-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

/* DOT */
.ptg-feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}

    .ptg-feature-dot.orange {
        background: linear-gradient( 135deg, var(--accent), #ffb56f );
    }

/* TEXT */
.ptg-feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
}


/* =========================================
INQUIRY CARD
========================================== */

.ptg-product-inquiry-card {
    position: sticky;
    top: 120px;
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient( 180deg, #ffffff, #f8fbfd );
    box-shadow: 0 35px 80px rgba(24,59,86,0.08);
}

/* TAG */
.ptg-product-inquiry-tag {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(243,154,74,0.12);
    margin-bottom: 22px;
}

/* TITLE */
.ptg-product-inquiry-card h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 18px;
}

/* TEXT */
.ptg-product-inquiry-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 30px;
}


/* =========================================
RESPONSIVE
========================================== */

@media(max-width:991px) {

    .ptg-product-detail-section {
        padding: 40px 0 60px;
    }

    .ptg-product-detail-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .ptg-product-inquiry-card {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}


@media(max-width:767px) {

    .ptg-product-detail-hero {
        padding: 120px 0 70px;
    }

        .ptg-product-detail-hero h1 {
            font-size: 28px;
        }

    .ptg-product-main-image,
    .ptg-product-description-box,
    .ptg-product-inquiry-card {
        border-radius: 24px;
    }

        .ptg-product-main-image img {
            height: 420px;
        }

    .ptg-product-thumb-small img {
        height: 100px;
    }

    .ptg-product-detail-content h2 {
        font-size: 32px;
    }

    .ptg-product-description-head,
    .ptg-product-description-content,
    .ptg-product-inquiry-card {
        padding: 25px;
    }

        .ptg-product-inquiry-card h3 {
            font-size: 24px;
        }

    .ptg-product-description-section {
        padding-bottom: 80px;
    }
}
