html { overflow-x: clip; }
/**
 * TajiPack Website - Main Stylesheet
 * 
 * Table of Contents:
 * 1. Global Styles
 * 2. Navigation
 * 3. Typography
 * 4. Buttons
 * 5. Forms
 * 6. Cards
 * 7. Footer
 * 8. Utilities
 */

/* ============================================
   1. Global Styles
   ============================================ */

:root {
    /* Brand Colors */
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #3385d6;
    --secondary-color: #28a745;
    --secondary-dark: #1e7e34;
    --secondary-light: #48b461;
    
    /* Neutral Colors */
    --dark: #212529;
    --gray-dark: #343a40;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --light: #f8f9fa;
    --white: #ffffff;
    
    /* Status Colors */
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: clip;
    min-width: 320px;
}

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* ============================================
   2. Navigation
   ============================================ */

/* Sticky Navigation */
#mainNav {
    transition: var(--transition-base);
    z-index: 1030;
}

#mainNav.sticky-top {
    box-shadow: var(--shadow-sm);
}

/* Logo Styles */
.navbar-brand {
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.logo-img {
    max-height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--light);
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.dropdown-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    padding: 0.5rem 1.5rem;
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.5rem;
    margin-left: 0.125rem;
}

/* Show submenu on hover (desktop only) */
@media (min-width: 992px) {
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* Cart Badge */
.nav-link .badge {
    font-size: 0.625rem;
    padding: 0.25em 0.5em;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-color);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid var(--light);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
    }
}

/* Hamburger Menu Animation */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Reference-style two-tier site header */
.tp-site-header {
    z-index: 1040;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(22, 30, 38, 0.08);
}

.tp-header-topline {
    height: 7px;
    background: #4a2f2a;
}

.tp-header-utility {
    background: linear-gradient(90deg, #ffffff 0%, #f6f7f8 58%, #e6e8ea 100%);
    border-bottom: 1px solid #e5e8eb;
}

.tp-header-utility-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.tp-header-utility-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.tp-header-utility-links a {
    color: #263340;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
}

.tp-header-utility-links a:hover {
    color: var(--primary-color);
}

.tp-header-search {
    width: 260px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border-bottom: 1px solid #89929b;
    padding-bottom: 0.12rem;
}

.tp-header-search i {
    color: #1674be;
    font-size: 0.92rem;
}

.tp-header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #263340;
    font-size: 0.92rem;
    padding: 0.12rem 0;
}

.tp-header-search input::placeholder {
    color: #5d6872;
}

.tp-header-translate {
    min-width: 128px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #263340;
    border-bottom: 1px solid #89929b;
    padding-bottom: 0.12rem;
}

.tp-header-translate i {
    color: #1674be;
    font-size: 0.92rem;
}

.tp-translate-select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #263340;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.12rem 1.15rem 0.12rem 0;
    cursor: pointer;
}

.tp-translate-select:focus {
    color: var(--primary-color);
}

.tp-translate-option.active {
    color: #ffffff !important;
    background: var(--primary-color);
}

.tp-google-translate-element {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

body > .skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.tp-main-nav {
    min-height: 118px;
    padding: 0;
    background: #ffffff;
}

.tp-main-nav .container {
    min-height: 118px;
}

.tp-header-brand {
    padding: 0;
    margin: 0;
}

.tp-header-brand .logo-img {
    width: 320px;
    max-height: 104px;
    object-fit: contain;
}

.tp-main-nav .navbar-toggler {
    border: 1px solid #d4dae0;
    border-radius: 8px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f4f8fb;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tp-main-nav .navbar-toggler:hover,
.tp-main-nav .navbar-toggler:focus {
    border-color: var(--primary-color);
    background: #eef6fd;
    box-shadow: 0 0 0 0.18rem rgba(0, 102, 204, 0.12);
}

.tp-main-nav .navbar-toggler-icon {
    position: relative;
    width: 21px;
    height: 16px;
    background-image: none;
    background: linear-gradient(#23313e, #23313e) center / 100% 2px no-repeat;
    transition: background-size 0.18s ease;
}

.tp-main-nav .navbar-toggler-icon::before,
.tp-main-nav .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #23313e;
    transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.tp-main-nav .navbar-toggler-icon::before {
    top: 0;
}

.tp-main-nav .navbar-toggler-icon::after {
    bottom: 0;
}

.tp-main-nav .navbar-toggler[aria-expanded="true"] {
    border-color: var(--primary-color);
    background: #eef6fd;
}

.tp-main-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-size: 0 2px;
}

.tp-main-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 7px;
    transform: rotate(45deg);
}

.tp-main-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 7px;
    transform: rotate(-45deg);
}

.tp-primary-nav {
    align-items: center;
    gap: 2.2rem;
}

.tp-primary-nav .nav-link {
    color: #1f2c38;
    font-size: 1rem;
    font-weight: 500;
    padding: 1.8rem 0;
    text-decoration: none;
}

.tp-primary-nav .nav-link:hover,
.tp-primary-nav .nav-link:focus,
.tp-primary-nav .nav-link.active {
    color: var(--primary-color);
}

.tp-primary-nav .nav-link.active::after {
    display: none;
}

.tp-primary-nav .dropdown-toggle::after,
.tp-icon-link.dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: 0.12em;
    border-top-width: 0.28em;
}

.tp-main-nav .dropdown-menu {
    min-width: 250px;
    margin-top: 0;
    padding: 0.65rem 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(28, 42, 56, 0.15);
}

.tp-main-nav .dropdown-item {
    padding: 0.65rem 1.1rem;
    color: #263340;
    font-size: 0.92rem;
    font-weight: 500;
}

.tp-main-nav .dropdown-item:hover,
.tp-main-nav .dropdown-item:focus {
    background: #f3f7fb;
    color: var(--primary-color);
}

.tp-header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.tp-icon-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #23313e;
    text-decoration: none;
    border: 1px solid #d7dde3;
}

.tp-icon-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

.tp-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #dc3545;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
}

.tp-quote-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 1.25rem;
    background: #1b75bb;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}

.tp-quote-btn:hover {
    background: #0f5e9d;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 1199.98px) {
    .tp-primary-nav {
        gap: 1rem;
    }

    .tp-header-brand .logo-img {
        width: 225px;
        max-height: 86px;
    }

    .tp-primary-nav .nav-link {
        font-size: 0.94rem;
    }

    .tp-header-actions {
        gap: 0.5rem;
    }

    .tp-quote-btn {
        padding: 0 0.9rem;
        font-size: 0.78rem;
    }
}

@media (min-width: 992px) {
    .tp-main-nav .navbar-toggler {
        display: none !important;
    }

    .tp-main-nav .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

@media (max-width: 991.98px) {
    .tp-header-utility {
        display: none;
    }

    .tp-main-nav,
    .tp-main-nav .container {
        min-height: 94px;
    }

    .tp-header-brand .logo-img {
        width: 220px;
        max-height: 78px;
    }

    .tp-main-nav .container {
        align-items: center;
    }

    .tp-main-nav .navbar-collapse {
        flex-basis: 100%;
        max-height: calc(100vh - 108px);
        margin: 0.65rem 0 1rem;
        padding: 0.85rem;
        overflow-y: auto;
        border: 1px solid #dce5ec;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 18px 42px rgba(31, 49, 64, 0.16);
    }

    .tp-primary-nav {
        align-items: stretch;
        gap: 0.35rem;
    }

    .tp-primary-nav .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.8rem 0.9rem;
        border-radius: 8px;
        color: #23313e;
        background: #f7fafc;
        font-size: 0.98rem;
        font-weight: 800;
    }

    .tp-primary-nav .nav-link:hover,
    .tp-primary-nav .nav-link:focus,
    .tp-primary-nav .nav-link.active,
    .tp-primary-nav .dropdown-toggle.show {
        color: var(--primary-color);
        background: #eef6fd;
    }

    .tp-primary-nav .dropdown-toggle::after {
        margin-left: auto;
        transition: transform 0.2s ease;
    }

    .tp-primary-nav .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    .tp-main-nav .dropdown-menu {
        margin: 0.35rem 0 0.45rem;
        padding: 0.35rem;
        border: 1px solid #e2e8ef;
        border-radius: 8px;
        background: #fbfdff;
        box-shadow: none;
    }

    .tp-main-nav .dropdown-item {
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 0.65rem 0.75rem;
        border-radius: 6px;
        color: #43515e;
        font-size: 0.92rem;
        font-weight: 700;
        white-space: normal;
    }

    .tp-main-nav .dropdown-item i {
        color: var(--primary-color);
    }

    .tp-main-nav .dropdown-divider {
        margin: 0.35rem 0;
        border-color: #e4ebf2;
    }

    .tp-main-nav .dropdown-header {
        padding: 0.55rem 0.75rem 0.35rem;
    }

    .tp-header-actions {
        justify-content: stretch;
        align-items: stretch;
        gap: 0.6rem;
        padding-top: 0.85rem;
        margin-top: 0.75rem;
        border-top: 1px solid #e4ebf2;
    }

    .tp-icon-link {
        width: 46px;
        height: 46px;
        border-radius: 8px;
        background: #f7fafc;
        font-size: 1.1rem;
    }

    .tp-header-actions > .dropdown {
        display: flex;
    }

    .tp-quote-btn {
        flex: 1;
        min-height: 46px;
        border-radius: 8px;
        padding: 0 1rem;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 575.98px) {
    .tp-header-brand .logo-img {
        width: 176px;
        max-height: 66px;
    }

    /* Action row: [cart] [account] [quote-btn] */
    .tp-header-actions {
        display: grid;
        grid-template-columns: 46px 46px 1fr;
        gap: 0.5rem;
        align-items: center;
    }

    /* Quote button fills remaining space and wraps text */
    .tp-quote-btn {
        width: 100%;
        flex-basis: auto;
        font-size: 0.78rem;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        min-height: 46px;
        padding: 0.4rem 0.75rem;
    }

    /* Dropdown wrapper must not escape its grid cell */
    .tp-header-actions > .dropdown {
        position: relative;
    }

    /* Account dropdown: open upward-right, don't overflow viewport */
    .tp-header-actions > .dropdown > .dropdown-menu {
        position: absolute !important;
        left: 0 !important;
        right: auto !important;
        top: calc(100% + 4px) !important;
        min-width: min(280px, calc(100vw - 2rem));
        max-width: calc(100vw - 2rem);
        max-height: 60vh;
        overflow-y: auto;
        z-index: 9999;
        /* Override Bootstrap's dropdown-menu-end */
        transform: none !important;
    }
}


/* ============================================
   3. Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   4. Buttons
   ============================================ */

.btn {
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   5. Forms
   ============================================ */

.form-control,
.form-select {
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 0.625rem 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-text {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ============================================
   6. Cards
   ============================================ */

.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.card-img-top {
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

/* ============================================
   7. Footer
   ============================================ */

.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--white);
}

/* Footer Logo */
.footer-logo img {
    max-height: 76px;
    width: auto;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    background: #ffffff;
}

/* Footer Section Headings */
.footer-section h6 {
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Footer Description */
.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-light);
}

/* Footer Contact Items */
.footer-contact .contact-item {
    margin-bottom: 0.75rem;
}

.footer-contact .contact-item i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

/* Footer Links */
.footer-links li {
    transition: var(--transition-fast);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

/* Newsletter Form */
.newsletter-form .input-group {
    box-shadow: var(--shadow-sm);
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    box-shadow: none;
    border: none;
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.75rem 1.25rem;
}

/* Social Media Links */
.social-links .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.social-links .btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.social-links .btn-outline-success:hover {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.social-links .btn i {
    font-size: 1.125rem;
}

/* Footer Bottom */
.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    color: #ffffff;
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-bottom-link,
.footer-bottom-separator {
    color: rgba(255, 255, 255, 0.82);
}

.footer .list-inline-item a {
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer .list-inline-item a:hover,
.footer-bottom-link:hover {
    color: var(--primary-light);
    text-decoration: none;
}

/* Back to Top Button */
#backToTop {
    transition: var(--transition-base);
    opacity: 0.8;
}

#backToTop:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Footer Responsive Styles */
@media (max-width: 767.98px) {
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    #backToTop {
        width: 45px;
        height: 45px;
        margin: 1rem !important;
    }
}

/* ============================================
   8. Utilities
   ============================================ */

/* Spacing Utilities */
.section-padding {
    padding: 4rem 0;
}

.section-padding-lg {
    padding: 6rem 0;
}

/* Background Colors */
.bg-light-gray {
    background-color: var(--light);
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Shadows */
.shadow-hover {
    transition: var(--transition-base);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   9. WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1020;
    transition: var(--transition-base);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none;
}

.whatsapp-float i {
    line-height: 1;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 767.98px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 70px;
        right: 15px;
    }
}


/* ============================================
   10. Homepage Styles
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: var(--white);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.hero-section .btn-outline-primary {
    border-color: var(--white);
    color: var(--white);
}

.hero-section .btn-outline-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Hero Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-slide-in {
    animation: slideIn 1s ease-out 0.3s both;
}

/* Statistics Section */
.statistics-section {
    border-bottom: 1px solid var(--light);
}

.stat-item {
    padding: 2rem 1rem;
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon i {
    font-size: 3rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Product Cards */
.product-card {
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--light);
}

.product-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-base);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-card .card-title a:hover {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light) 100%);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-card .bi-quote {
    opacity: 0.2;
}

.testimonial-author h5 {
    color: var(--dark);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Responsive Styles for Homepage */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .stat-icon i {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .product-image-wrapper img {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 2rem 1rem !important;
    }
}


/* ============================================
   11. Products Catalog Page Styles
   ============================================ */

/* Breadcrumb Section */
.breadcrumb-section {
    border-bottom: 1px solid var(--light);
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray);
    font-size: 1.25rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray);
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 80px;
}

.filter-group {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.search-form .input-group {
    box-shadow: var(--shadow-sm);
}

.search-form .form-control {
    border-right: none;
}

.search-form .btn {
    border-left: none;
}

/* Category List */
.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li a {
    display: flex;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.category-list li a:hover {
    background-color: var(--light);
    color: var(--primary-color);
}

.category-list li.active a {
    background-color: var(--primary-color);
    color: var(--white);
}

.category-list li.active a .badge {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.category-list .badge {
    font-size: 0.75rem;
}

/* Products Toolbar */
.products-toolbar {
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.sort-form .input-group {
    min-width: 250px;
}

.sort-form .input-group-text {
    background-color: var(--light);
    border-right: none;
    font-weight: 500;
}

.sort-form .form-select {
    border-left: none;
}

/* Active Filters */
.active-filters .badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

.active-filters .badge a {
    text-decoration: none;
    opacity: 0.8;
}

.active-filters .badge a:hover {
    opacity: 1;
}

/* Products Grid */
.products-grid {
    min-height: 400px;
}

.product-card {
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--light);
}

.product-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-base);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-category a {
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.product-category a:hover {
    color: var(--primary-color) !important;
}

.product-card .card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.product-card .card-title a {
    transition: var(--transition-fast);
}

.product-card .card-title a:hover {
    color: var(--primary-color) !important;
}

.product-footer {
    border-top: 1px solid var(--light);
    padding-top: 1rem;
}

/* No Products */
.no-products {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.no-products i {
    opacity: 0.3;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pagination .page-link {
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.pagination .page-link:hover {
    background-color: var(--light);
    color: var(--primary-dark);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    color: var(--gray-light);
    background-color: var(--white);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .filters-sidebar {
        position: static;
    }
    
    .filter-group {
        margin-bottom: 1rem;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .toolbar-left,
    .toolbar-right {
        width: 100%;
    }
    
    .sort-form .input-group {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .product-image-wrapper img {
        height: 200px;
    }
    
    .products-toolbar {
        padding: 1rem 0.75rem;
    }
    
    .toolbar-left p {
        font-size: 0.875rem;
    }
}


/* ============================================
   12. Product Detail Page Styles
   ============================================ */

/* Product Images */
.product-images .main-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background-color: var(--light);
}

.product-images .main-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    cursor: zoom-in;
}

.thumbnail-gallery .thumbnail-image {
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.thumbnail-gallery .thumbnail-image:hover,
.thumbnail-gallery .thumbnail-image.active {
    border-color: var(--primary-color);
    opacity: 1;
}

/* Product Info */
.product-info .product-category a {
    font-size: 0.875rem;
    font-weight: 500;
}

.product-info .product-name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.product-rating .stars i {
    font-size: 1.125rem;
}

.product-price .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.product-description .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Variants */
.variant-item {
    transition: var(--transition-fast);
}

.variant-item:hover {
    background-color: var(--light);
    border-color: var(--primary-color) !important;
}

.variant-price {
    font-size: 1.25rem;
}

/* Quantity Selector */
.quantity-selector .input-group {
    box-shadow: var(--shadow-sm);
}

.quantity-selector input[type="number"] {
    -moz-appearance: textfield;
}

.quantity-selector input[type="number"]::-webkit-outer-spin-button,
.quantity-selector input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Product Actions */
.product-actions .btn {
    min-width: 180px;
}

/* Product Meta */
.product-meta {
    padding: 1.5rem;
    background-color: var(--light);
    border-radius: var(--border-radius);
}

.product-meta ul li {
    padding: 0.5rem 0;
}

/* Product Tabs */
.nav-tabs {
    border-bottom: 2px solid var(--light);
}

.nav-tabs .nav-link {
    color: var(--gray);
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-light);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: transparent;
}

.tab-content {
    min-height: 300px;
}

.product-full-description,
.product-specifications {
    line-height: 1.8;
    font-size: 1rem;
}

/* Reviews */
.review-item {
    padding-bottom: 1.5rem;
}

.review-item:last-child {
    border-bottom: none !important;
}

.review-rating i {
    font-size: 1rem;
}

/* Review Form */
.review-form {
    padding: 2rem;
    background-color: var(--light);
    border-radius: var(--border-radius-lg);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: var(--warning);
}

/* Related Products */
.related-products .product-card {
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .product-info .product-name {
        font-size: 1.75rem;
    }
    
    .product-price .price {
        font-size: 2rem;
    }
    
    .product-actions .btn {
        min-width: 150px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 767.98px) {
    .product-images .main-image img {
        max-height: 400px;
    }
    
    .product-info .product-name {
        font-size: 1.5rem;
    }
    
    .product-price .price {
        font-size: 1.75rem;
    }
    
    .product-description .lead {
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }
    
    .tab-content {
        padding: 1.5rem 1rem !important;
    }
}


/* ============================================
   13. Shopping Cart Page Styles
   ============================================ */

/* Cart Items */
.cart-item {
    transition: var(--transition-base);
}

.cart-item:hover {
    box-shadow: var(--shadow);
}

.cart-item img {
    max-height: 100px;
    object-fit: cover;
}

.cart-item .input-group {
    max-width: 130px;
}

.cart-item input[type="number"] {
    -moz-appearance: textfield;
}

.cart-item input[type="number"]::-webkit-outer-spin-button,
.cart-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Summary */
.cart-summary {
    border: 1px solid var(--light);
}

.cart-summary .summary-row {
    padding: 0.5rem 0;
}

.cart-summary hr {
    border-color: var(--light);
    margin: 1rem 0;
}

/* Empty Cart */
.empty-cart {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-cart i {
    opacity: 0.3;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .cart-item img {
        max-height: 80px;
    }
    
    .cart-item .input-group {
        max-width: 110px;
    }
    
    .cart-summary {
        position: static !important;
    }
}


/* ============================================
   14. Checkout Page Styles
   ============================================ */

/* Checkout Form */
.checkout-form {
    border: 1px solid var(--light);
}

.checkout-form .form-label {
    font-weight: 500;
    color: var(--dark);
}

.checkout-form .form-control:focus,
.checkout-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.checkout-form .invalid-feedback {
    display: none;
}

.checkout-form .was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* Order Summary */
.order-summary {
    border: 1px solid var(--light);
}

.order-item .item-image img {
    border: 1px solid var(--light);
}

.order-totals hr {
    border-color: var(--light);
    margin: 1rem 0;
}

/* ============================================
   15. Order Confirmation Page Styles
   ============================================ */

.confirmation-card {
    border: 1px solid var(--light);
}

.success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.order-reference {
    border: 2px dashed var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .checkout-form,
    .order-summary,
    .confirmation-card {
        padding: 1.5rem !important;
    }
    
    .order-summary {
        position: static !important;
        margin-top: 2rem;
    }
    
    .success-icon i {
        font-size: 4rem !important;
    }
}


/* ============================================
   16. TajiPack Reference-Inspired Homepage
   ============================================ */

.tp-home {
    background: #ffffff;
}

.tp-home .container {
    max-width: 1180px;
}

.tp-kicker {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.tp-section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.tp-section-heading h2,
.tp-intro h2,
.tp-categories-band h2,
.tp-proof-band h2,
.tp-faq-band h2 {
    color: #28323d;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
}

.tp-section-heading p:not(.tp-kicker),
.tp-intro p,
.tp-categories-band p,
.tp-proof-band p,
.tp-faq-band p {
    color: #5f6c78;
}

.tp-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #132230;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.tp-hero::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -70px;
    height: 135px;
    background: #ffffff;
    transform: rotate(-3deg);
    transform-origin: left top;
    z-index: 2;
}

.tp-hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 29, 42, 0.95) 0%, rgba(16, 29, 42, 0.82) 42%, rgba(16, 29, 42, 0.48) 100%),
        url('../images/tajhero-2.png') center / cover no-repeat;
    opacity: 0.95;
}

.tp-hero-inner {
    position: relative;
    z-index: 3;
    padding: 5rem 0 7rem;
}

.tp-hero h1 {
    max-width: 560px;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.tp-hero-copy {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tp-hero .btn {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
}

.tp-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tp-capability-card {
    min-height: 160px;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(3px);
}

.tp-capability-card i {
    display: block;
    color: #33b7de;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tp-capability-card:nth-child(even) i,
.tp-proof-card:nth-child(even) i {
    color: var(--secondary-color);
}

.tp-capability-card h2 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tp-capability-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.tp-intro {
    padding: 5rem 0 4rem;
}

.tp-intro-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.tp-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.tp-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    border-top: 1px solid #dfe5ea;
    border-bottom: 1px solid #dfe5ea;
    padding: 1rem 0;
}

.tp-stat-row div {
    min-width: 0;
}

.tp-stat-row strong {
    display: block;
    color: var(--primary-color);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
}

.tp-stat-row span {
    color: #65717d;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tp-product-band,
.tp-industries,
.tp-faq-band {
    padding: 4.5rem 0;
}

.tp-service-card {
    display: block;
    height: 100%;
    padding: 1rem;
    border: 1px solid #d8dee4;
    background: #ffffff;
    color: #2b3540;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tp-service-card:hover {
    color: #2b3540;
    text-decoration: none;
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(20, 36, 52, 0.1);
    transform: translateY(-4px);
}

.tp-service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 1rem;
    background: #f2f5f7;
}

.tp-service-card span {
    display: block;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.tp-service-card p {
    color: #65717d;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.tp-categories-band,
.tp-proof-band {
    padding: 4.5rem 0;
    background: #f3f5f7;
}

.tp-accordion-list {
    border-top: 1px solid #cdd4dc;
}

.tp-accordion-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #cdd4dc;
    background: #ffffff;
    color: #29333f;
    font-weight: 800;
    text-decoration: none;
}

.tp-accordion-list a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.tp-accordion-list small {
    color: #6d7782;
    font-weight: 700;
}

.tp-industries {
    background: #ffffff;
}

.tp-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tp-industry-tile {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    min-height: 86px;
    border: 1px solid #d8dee4;
    background: #ffffff;
    color: #303a45;
    font-weight: 800;
    text-decoration: none;
}

.tp-industry-tile:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

.tp-industry-tile img {
    width: 86px;
    height: 86px;
    object-fit: cover;
}

.tp-industry-tile span {
    padding: 0.75rem;
    font-size: 0.92rem;
}

.tp-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.tp-proof-card {
    min-height: 170px;
    padding: 1.35rem;
    border: 1px solid #d1d8df;
    background: #ffffff;
}

.tp-proof-card i {
    color: #33a9d6;
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.tp-proof-card h3 {
    color: #26313d;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tp-proof-card p {
    color: #65717d;
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.tp-home-faq .accordion-item {
    border: 0;
    border-bottom: 1px solid #d7dde3;
}

.tp-home-faq .accordion-button {
    padding: 1rem 0;
    color: #26313d;
    background: #ffffff;
    box-shadow: none;
    font-weight: 800;
    font-size: 0.96rem;
}

.tp-home-faq .accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

.tp-home-faq .accordion-body {
    padding: 0 0 1.25rem;
    color: #60707f;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .tp-hero {
        min-height: auto;
    }

    .tp-hero-inner {
        padding: 4rem 0 6rem;
    }

    .tp-capability-grid,
    .tp-proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tp-industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .tp-hero::after {
        height: 85px;
        bottom: -45px;
    }

    .tp-hero-inner,
    .tp-product-band,
    .tp-industries,
    .tp-categories-band,
    .tp-proof-band,
    .tp-faq-band {
        padding: 3rem 0;
    }

    .tp-capability-grid,
    .tp-proof-grid,
    .tp-industry-grid,
    .tp-stat-row {
        grid-template-columns: 1fr;
    }

    .tp-capability-card {
        min-height: auto;
    }

    .tp-industry-tile {
        grid-template-columns: 78px minmax(0, 1fr);
        min-height: 78px;
    }

    .tp-industry-tile img {
        width: 78px;
        height: 78px;
    }
}

/* Homepage hero slider and motion polish */
.tp-home .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tp-home .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.tp-home .animate-on-scroll:nth-child(2) {
    transition-delay: 0.08s;
}

.tp-home .animate-on-scroll:nth-child(3) {
    transition-delay: 0.16s;
}

.tp-home .animate-on-scroll:nth-child(4) {
    transition-delay: 0.24s;
}

.tp-hero {
    min-height: 620px;
    display: block;
}

.tp-hero-carousel,
.tp-hero-carousel .carousel-inner,
.tp-hero-carousel .carousel-item {
    min-height: 620px;
}

.tp-hero-carousel {
    position: relative;
    width: 100%;
}

.tp-hero-slide-media,
.tp-hero-pattern {
    position: absolute;
    inset: 0;
}

.tp-hero-slide-media {
    background-position: center;
    background-size: cover;
    opacity: 0.98;
    transform: scale(1.04);
    transition: transform 3.2s ease;
}

.tp-hero-carousel .carousel-item.active .tp-hero-slide-media {
    transform: scale(1);
}

.tp-hero-pattern {
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 72%);
    opacity: 0.45;
}

.tp-hero-carousel .carousel-item {
    position: relative;
}

.tp-hero-carousel .tp-hero-inner {
    min-height: 620px;
    display: flex;
    align-items: center;
}

.tp-hero-content {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.tp-hero-carousel .carousel-item.active .tp-hero-content {
    opacity: 1;
    transform: translateY(0);
}

.tp-hero .tp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.42rem 0.72rem;
    background: rgba(51, 183, 222, 0.16);
    border: 1px solid rgba(51, 183, 222, 0.35);
    color: #d9f6ff;
}

.tp-hero .tp-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(40, 167, 69, 0.18);
}

.tp-hero-carousel .carousel-indicators {
    right: auto;
    bottom: 74px;
    left: calc((100vw - min(1120px, calc(100vw - 2rem))) / 2);
    justify-content: flex-start;
    gap: 0.55rem;
    margin: 0;
    z-index: 5;
}

.tp-hero-carousel .carousel-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.tp-hero-carousel .carousel-indicators .active {
    background: #33b7de;
}

.tp-hero-control {
    top: auto;
    bottom: 64px;
    width: 42px;
    height: 42px;
    transform: none;
    z-index: 6;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    backdrop-filter: blur(6px);
}

.tp-hero-control:hover {
    background: rgba(51, 183, 222, 0.72);
}

.tp-hero-control.carousel-control-prev {
    left: auto;
    right: 7rem;
}

.tp-hero-control.carousel-control-next {
    right: 3.5rem;
}

.tp-capability-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.tp-capability-card::after {
    content: '';
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 86px;
    height: 86px;
    border: 14px solid rgba(255, 255, 255, 0.07);
    transform: rotate(18deg);
}

.tp-capability-card:hover {
    transform: translateY(-5px);
    border-color: rgba(51, 183, 222, 0.58);
    background: rgba(255, 255, 255, 0.17);
}

.tp-service-card,
.tp-industry-tile,
.tp-proof-card {
    position: relative;
    overflow: hidden;
}

.tp-service-card::after,
.tp-proof-card::after {
    content: '';
    position: absolute;
    inset: auto -35% -45% auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(51, 183, 222, 0.14), transparent 68%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.tp-service-card:hover::after,
.tp-proof-card:hover::after {
    opacity: 1;
}

.tp-industry-tile img {
    transition: transform 0.35s ease;
}

.tp-industry-tile:hover img {
    transform: scale(1.08);
}

@media (max-width: 991.98px) {
    .tp-hero,
    .tp-hero-carousel,
    .tp-hero-carousel .carousel-inner,
    .tp-hero-carousel .carousel-item,
    .tp-hero-carousel .tp-hero-inner {
        min-height: auto;
    }

    .tp-hero-carousel .tp-hero-inner {
        padding: 4rem 0 6rem;
    }

    .tp-hero-control {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .tp-hero-carousel .carousel-indicators {
        bottom: 42px;
        left: 1rem;
    }

    .tp-hero-carousel .carousel-indicators [data-bs-target] {
        width: 24px;
    }

    .tp-hero-pattern {
        background-size: 48px 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tp-home .animate-on-scroll,
    .tp-hero-slide-media,
    .tp-hero-content,
    .tp-capability-card,
    .tp-industry-tile img {
        transition: none !important;
    }
}

/* ============================================
   17. Reference-Inspired About Page
   ============================================ */

.tp-about {
    background: #ffffff;
    color: #26313d;
}

.tp-about .container {
    max-width: 1120px;
}

.tp-about h1,
.tp-about h2,
.tp-about h3 {
    letter-spacing: 0;
}

.tp-about-hero {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1c252d;
}

.tp-about-hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 29, 34, 0.88), rgba(23, 29, 34, 0.65)),
        url('../images/tajhero-2.png') center / cover no-repeat;
    filter: grayscale(100%);
    transform: scale(1.02);
}

.tp-about-hero .container {
    position: relative;
    z-index: 1;
}

.tp-about-hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 700;
    margin: 0;
}

.tp-about-crumbs {
    padding: 1rem 0;
    background: #ffffff;
    border-bottom: 1px solid #edf1f4;
}

.tp-about-intro {
    padding: 3rem 0 4.25rem;
}

.tp-about-kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #1488c8;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.tp-about-kicker::before {
    content: '';
    width: 34px;
    height: 2px;
    background: #1488c8;
}

.tp-about-intro h2,
.tp-about-trust h2,
.tp-about-careers h2,
.tp-about-faq h2 {
    color: #2b3540;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 650;
    line-height: 1.15;
}

.tp-about-lead {
    color: #586672;
    font-size: 1.05rem;
    line-height: 1.7;
}

.tp-about-service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.tp-about-service-list li {
    position: relative;
    padding: 0.25rem 0 0.25rem 1.1rem;
    color: #2f3c47;
    font-size: 0.93rem;
    font-weight: 750;
    text-transform: uppercase;
}

.tp-about-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.78rem;
    width: 5px;
    height: 5px;
    background: #1488c8;
}

.tp-about-intro h3 {
    color: #2b3540;
    font-size: 1rem;
    font-weight: 800;
    margin: 1.5rem 0 0.35rem;
    text-transform: uppercase;
}

.tp-about-product-showcase {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #f6f8fa 0%, #ffffff 70%);
    overflow: hidden;
}

.tp-about-product-showcase img {
    width: min(100%, 520px);
    max-height: 360px;
    object-fit: contain;
    transform: rotate(-4deg);
}

.tp-about-dark {
    position: relative;
    padding: 4.75rem 0 5.25rem;
    overflow: hidden;
    background: #070b0f;
    color: #dfe7ee;
}

.tp-about-dark::after {
    content: '';
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -70px;
    height: 120px;
    background: #ffffff;
    transform: rotate(-3deg);
    transform-origin: left top;
}

.tp-about-dark-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 10, 0.96), rgba(3, 7, 10, 0.78)),
        url('../images/tajhero-3.png') center / cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.82;
}

.tp-about-dark .container {
    position: relative;
    z-index: 1;
}

.tp-about-dark h2 {
    max-width: 820px;
    color: #24afe4;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
}

.tp-about-dark p {
    color: rgba(239, 246, 251, 0.88);
}

.tp-about-values {
    display: grid;
    gap: 1rem;
}

.tp-about-values div {
    padding: 1rem 0 1rem 1.15rem;
    border-left: 3px solid #24afe4;
}

.tp-about-values span {
    display: block;
    color: #7ed85b;
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.tp-about-values strong {
    display: block;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.tp-about-values p {
    font-size: 0.86rem;
    margin: 0;
}

.tp-about-teams {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.tp-about-teams h3 {
    color: #24afe4;
    font-size: 0.95rem;
    font-weight: 800;
}

.tp-about-teams p {
    font-size: 0.88rem;
    margin: 0;
}

.tp-about-capability-gallery {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

.tp-about-capability-gallery h3 {
    color: #ffffff;
    font-size: 1.2rem;
}

.tp-about-capability-gallery p:last-child {
    margin-bottom: 0;
}

.tp-about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.tp-about-capability-grid img {
    display: block;
    width: 100%;
    min-height: 152px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 0.5rem;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(3, 15, 28, 0.18);
}

.tp-about-capability-grid img:first-child {
    grid-column: span 2;
}

.tp-about-trust {
    padding: 4.75rem 0 1.5rem;
}

.tp-about-wordmarks {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.tp-about-wordmarks span {
    color: #8e979f;
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
    filter: grayscale(100%);
}

.tp-about-trust h2 {
    margin-bottom: 1rem;
}

.tp-about-trust p {
    color: #687682;
}

.tp-about-partner-list {
    max-width: 760px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #dbe2e7;
}

.tp-about-partner-list span {
    position: relative;
    display: block;
    padding-left: 1rem;
    color: #41505d;
    font-size: 0.92rem;
}

.tp-about-partner-list span::before {
    content: '';
    position: absolute;
    top: 0.66rem;
    left: 0;
    width: 5px;
    height: 5px;
    background: #1488c8;
}

.tp-about-timeline {
    padding: 3rem 0 5rem;
    background: #ffffff;
}

.tp-about-timeline .container {
    position: relative;
    max-width: 820px;
}

.tp-about-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #29aee4;
    transform: translateX(-50%);
}

.tp-about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.2rem;
}

.tp-about-timeline-item::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    width: 22px;
    height: 22px;
    background: #29aee4;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 1px #29aee4;
}

.tp-about-timeline-item article {
    position: relative;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e4e9ed;
    box-shadow: 0 8px 24px rgba(30, 45, 58, 0.12);
}

.tp-about-timeline-item article span {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.8rem;
    background: #29aee4;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tp-about-timeline-item h3 {
    color: #26313d;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tp-about-timeline-item p {
    color: #65737f;
    font-size: 0.88rem;
    margin: 0;
}

.tp-about-timeline-item.is-left article {
    grid-column: 1;
    margin-right: 2rem;
}

.tp-about-timeline-item.is-right article {
    grid-column: 2;
    margin-left: 2rem;
}

.tp-about-careers {
    padding: 3.75rem 0;
    background: #f4f6f8;
}

.tp-about-careers p {
    color: #60707f;
}

.tp-about-careers img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tp-about-careers .btn,
.tp-about-faq .btn {
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tp-about-faq {
    padding: 4.5rem 0;
}

.tp-about-faq p {
    color: #60707f;
}

.tp-about-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #d8dee4;
}

.tp-about-accordion .accordion-button {
    padding: 1rem 0;
    background: #ffffff;
    color: #2a3540;
    box-shadow: none;
    font-size: 0.93rem;
    font-weight: 800;
}

.tp-about-accordion .accordion-button:not(.collapsed) {
    color: #1488c8;
}

.tp-about-accordion .accordion-body {
    padding: 0 0 1.25rem;
    color: #60707f;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .tp-about-teams,
    .tp-about-wordmarks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp-about-capability-gallery {
        grid-template-columns: 1fr;
    }

    .tp-about-dark::after {
        height: 80px;
        bottom: -45px;
    }
}

@media (max-width: 767.98px) {
    .tp-about-hero {
        min-height: 190px;
    }

    .tp-about-intro,
    .tp-about-dark,
    .tp-about-trust,
    .tp-about-timeline,
    .tp-about-careers,
    .tp-about-faq {
        padding: 3rem 0;
    }

    .tp-about-product-showcase {
        min-height: 260px;
    }

    .tp-about-teams,
    .tp-about-wordmarks {
        grid-template-columns: 1fr;
    }

    .tp-about-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp-about-timeline .container {
        max-width: 100%;
    }

    .tp-about-timeline-line {
        left: 1.4rem;
    }

    .tp-about-timeline-item {
        grid-template-columns: 1fr;
        padding-left: 2.75rem;
    }

    .tp-about-timeline-item::after {
        left: 1.4rem;
    }

    .tp-about-timeline-item.is-left article,
    .tp-about-timeline-item.is-right article {
        grid-column: 1;
        margin: 0;
    }
}

/* About page polish and scroll motion */
.tp-about {
    --about-blue: #128bd2;
    --about-cyan: #24afe4;
    --about-green: #66c447;
    --about-ink: #25313c;
}

.tp-about .animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
    will-change: opacity, transform;
}

.tp-about .animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0, 0);
}

.tp-about .reveal-left {
    transform: translateX(-42px);
}

.tp-about .reveal-right {
    transform: translateX(42px);
}

.tp-about .reveal-up {
    transform: translateY(34px);
}

.tp-about .delay-1 {
    transition-delay: 0.08s;
}

.tp-about .delay-2 {
    transition-delay: 0.16s;
}

.tp-about .delay-3 {
    transition-delay: 0.24s;
}

.tp-about .delay-4 {
    transition-delay: 0.32s;
}

.tp-about-hero {
    min-height: 360px;
}

.tp-about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 72%);
    opacity: 0.42;
}

.tp-about-hero-copy {
    max-width: 640px;
}

.tp-about-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    background: rgba(18, 139, 210, 0.24);
    color: #d9f4ff;
    border: 1px solid rgba(36, 175, 228, 0.45);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.tp-about-hero-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--about-green);
    box-shadow: 0 0 0 5px rgba(102, 196, 71, 0.18);
}

.tp-about-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 850;
    margin-bottom: 0.8rem;
}

.tp-about-hero p {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

.tp-about-intro {
    position: relative;
    overflow: hidden;
}

.tp-about-intro::before {
    content: '';
    position: absolute;
    top: 3rem;
    right: -8rem;
    width: 22rem;
    height: 22rem;
    border: 1px solid rgba(18, 139, 210, 0.16);
    transform: rotate(18deg);
}

.tp-about-intro::after {
    content: '';
    position: absolute;
    left: -6rem;
    bottom: 3rem;
    width: 14rem;
    height: 14rem;
    background: linear-gradient(135deg, rgba(36, 175, 228, 0.1), rgba(102, 196, 71, 0.08));
    clip-path: polygon(0 0, 100% 20%, 72% 100%, 0 78%);
}

.tp-about-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.4rem 0 1.6rem;
}

.tp-about-proof-strip div {
    padding: 1rem;
    background: #f6f9fb;
    border-left: 3px solid var(--about-blue);
    box-shadow: 0 8px 22px rgba(28, 47, 63, 0.07);
}

.tp-about-proof-strip strong {
    display: block;
    color: var(--about-blue);
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.tp-about-proof-strip span {
    display: block;
    color: #62717e;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 0.45rem;
    text-transform: uppercase;
}

.tp-about-service-list li {
    transition-property: opacity, transform, color, padding-left;
}

.tp-about-service-list li::before {
    background: var(--about-blue);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.tp-about-service-list li:hover {
    color: var(--about-blue);
    padding-left: 1.35rem;
}

.tp-about-service-list li:hover::before {
    background: var(--about-green);
    transform: scale(1.5);
}

.tp-about-product-showcase {
    position: relative;
    background:
        radial-gradient(circle at 22% 18%, rgba(36, 175, 228, 0.22), transparent 31%),
        radial-gradient(circle at 86% 78%, rgba(102, 196, 71, 0.18), transparent 28%),
        linear-gradient(140deg, #f6f8fa 0%, #ffffff 70%);
    border: 1px solid #e2e9ef;
    box-shadow: 0 22px 60px rgba(32, 49, 64, 0.12);
}

.tp-about-product-showcase img {
    filter: drop-shadow(0 18px 28px rgba(25, 35, 45, 0.16));
    transition: transform 0.45s ease;
}

.tilt-on-hover:hover img {
    transform: rotate(-2deg) scale(1.04);
}

.tp-float-card {
    position: absolute;
    padding: 0.55rem 0.8rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 139, 210, 0.24);
    color: #26313d;
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(24, 42, 58, 0.12);
    backdrop-filter: blur(5px);
    animation: tpFloatLabel 4.5s ease-in-out infinite;
}

.tp-float-card.one {
    top: 13%;
    left: 6%;
}

.tp-float-card.two {
    right: 7%;
    top: 28%;
    animation-delay: 0.8s;
}

.tp-float-card.three {
    left: 14%;
    bottom: 14%;
    animation-delay: 1.5s;
}

@keyframes tpFloatLabel {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tp-about-values div {
    background: linear-gradient(90deg, rgba(36, 175, 228, 0.12), rgba(255, 255, 255, 0));
}

.tp-about-values div:hover {
    border-color: var(--about-green);
    background: linear-gradient(90deg, rgba(102, 196, 71, 0.13), rgba(255, 255, 255, 0));
}

.tp-about-teams > div {
    position: relative;
    min-height: 160px;
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.tp-about-teams > div::after {
    content: '';
    position: absolute;
    right: -25px;
    bottom: -25px;
    width: 74px;
    height: 74px;
    border: 12px solid rgba(36, 175, 228, 0.12);
    transform: rotate(18deg);
}

.tp-about-teams > div:hover {
    border-color: rgba(36, 175, 228, 0.55);
    transform: translateY(-4px);
}

.tp-about-teams > div:hover h3 {
    color: var(--about-green);
}

.tp-about-teams h3 {
    transition: color 0.2s ease;
}

.tp-about-wordmarks span {
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.55s ease, transform 0.55s ease, color 0.2s ease;
}

.tp-about-wordmarks.animated span {
    opacity: 1;
    transform: translateY(0);
}

.tp-about-wordmarks.animated span.delay-1 {
    transition-delay: 0.05s;
}

.tp-about-wordmarks.animated span.delay-2 {
    transition-delay: 0.13s;
}

.tp-about-wordmarks.animated span.delay-3 {
    transition-delay: 0.21s;
}

.tp-about-wordmarks.animated span.delay-4 {
    transition-delay: 0.29s;
}

.tp-about-wordmarks span:hover,
.tp-about-partner-list span:hover {
    color: var(--about-blue);
}

.tp-about-partner-list span {
    transition-property: opacity, transform, color;
}

.tp-about-timeline-line {
    box-shadow: 0 0 28px rgba(41, 174, 228, 0.35);
}

.tp-about-timeline-item::after {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tp-about-timeline-item.animated::after {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 0 1px #29aee4, 0 0 0 9px rgba(41, 174, 228, 0.12);
}

.tp-about-timeline-item article {
    transition-property: opacity, transform, border-color, box-shadow;
}

.tp-about-timeline-item article:hover {
    border-color: rgba(41, 174, 228, 0.55);
    box-shadow: 0 18px 42px rgba(30, 45, 58, 0.16);
}

.tp-about-careers {
    background:
        linear-gradient(135deg, rgba(18, 139, 210, 0.08), transparent 35%),
        #f4f6f8;
}

.tp-careers-image-wrap {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(29, 45, 60, 0.18);
}

.tp-careers-image-wrap::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    z-index: 1;
}

.tp-careers-image-wrap img {
    transition: transform 0.55s ease, filter 0.55s ease;
}

.tp-careers-image-wrap:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}

.tp-about-accordion .accordion-button {
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.tp-about-accordion .accordion-button:not(.collapsed) {
    padding-left: 0.85rem;
}

@media (max-width: 767.98px) {
    .tp-about-hero {
        min-height: 280px;
    }

    .tp-about-proof-strip {
        grid-template-columns: 1fr;
    }

    .tp-about-product-showcase {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .tp-float-card {
        position: static;
        margin: 0.35rem;
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tp-about .animate-on-scroll,
    .tp-float-card,
    .tp-about-product-showcase img,
    .tp-careers-image-wrap img {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   18. Reference-Inspired Contact Page
   ============================================ */

.tp-contact-page {
    background: #ffffff;
    color: #28323d;
}

.tp-contact-page .container {
    max-width: 1120px;
}

.tp-contact-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tp-contact-page .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.tp-contact-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1b344c;
}

.tp-contact-hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 31, 48, 0.35), rgba(12, 31, 48, 0.08)),
        url('../images/tajhero-2.png') center / cover no-repeat;
    filter: saturate(1.05);
}

.tp-contact-hero .container {
    position: relative;
    z-index: 1;
}

.tp-contact-hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 650;
    margin: 0;
}

.tp-contact-crumbs {
    padding: 1.1rem 0;
    background: #ffffff;
}

.tp-contact-main {
    padding: 3.5rem 0 4rem;
}

.tp-contact-block h2,
.tp-contact-form-wrap h2 {
    color: #5b6269;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #7d858d;
}

.tp-contact-block p,
.tp-contact-form-wrap p,
.tp-contact-faq p {
    color: #5f6c78;
    line-height: 1.7;
}

.tp-contact-block a {
    font-weight: 750;
}

.tp-contact-support-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.35rem;
    padding: 0 1rem;
    border: 1px solid #aeb7bf;
    color: #4a5560;
    font-weight: 800;
    text-decoration: none;
}

.tp-contact-support-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}

.tp-contact-privacy {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
    padding: 1.4rem 1.6rem;
    background: #f7f8fa;
    border: 1px solid #d8dee4;
}

.tp-contact-privacy i {
    color: #2f75da;
    font-size: 2.8rem;
}

.tp-contact-privacy p {
    margin: 0;
    color: #4f5964;
}

.tp-contact-form {
    max-width: 420px;
    margin: 2rem auto 0;
}

.tp-contact-form label {
    display: block;
    color: #5d6872;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0.85rem 0 0.25rem;
}

.tp-contact-form label span {
    color: #8a949e;
    font-weight: 500;
}

.tp-contact-form input,
.tp-contact-form textarea {
    width: 100%;
    border: 1px solid #c6cdd4;
    background: #ffffff;
    color: #28323d;
    font: inherit;
    padding: 0.55rem 0.7rem;
    border-radius: 0;
}

.tp-contact-form textarea {
    resize: vertical;
}

.tp-contact-form input:focus,
.tp-contact-form textarea:focus {
    outline: 2px solid rgba(27, 117, 187, 0.16);
    border-color: #1b75bb;
}

.tp-contact-form small {
    display: block;
    color: #7a858f;
    font-size: 0.76rem;
    line-height: 1.45;
    margin-top: 0.35rem;
}

.tp-contact-form button {
    width: 100%;
    min-height: 48px;
    margin-top: 1.4rem;
    border: 0;
    background: #2f75da;
    color: #ffffff;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tp-contact-form button:hover {
    background: #1b63bf;
}

.tp-contact-form-note {
    color: #7a858f !important;
    font-size: 0.78rem;
    margin-top: 1rem;
}

.tp-contact-sidebar {
    position: sticky;
    top: 132px;
    padding-top: 0.3rem;
}

.tp-contact-sidebar-logo {
    width: 150px;
    max-height: 68px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.tp-contact-sidebar p {
    color: #5f6c78;
    margin-bottom: 0.25rem;
}

.tp-contact-sidebar strong {
    color: #333d47;
}

.tp-contact-sidebar-section {
    display: grid;
    gap: 0.15rem;
    margin-top: 1.2rem;
    color: #5f6c78;
}

.tp-contact-sidebar-section strong {
    display: block;
    color: #333d47;
    margin-bottom: 0.2rem;
}

.tp-contact-sidebar-link {
    display: block;
    margin-top: 1.1rem;
    color: #1b75bb;
    font-weight: 750;
}

.tp-contact-map {
    padding: 0 0 4.5rem;
}

.tp-contact-map .ratio {
    border: 1px solid #d8dee4;
    filter: grayscale(0.15);
}

.tp-contact-faq {
    padding: 4.5rem 0;
    background: #ffffff;
}

.tp-contact-faq .tp-kicker {
    color: #1b75bb;
}

.tp-contact-faq h2 {
    color: #4d5964;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 500;
    line-height: 1.15;
}

.tp-contact-faq .btn {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 850;
}

.tp-contact-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #cbd3da;
}

.tp-contact-accordion .accordion-button {
    padding: 1rem 0;
    background: #ffffff;
    color: #4a5560;
    box-shadow: none;
    font-size: 0.96rem;
    font-weight: 800;
}

.tp-contact-accordion .accordion-button:not(.collapsed) {
    color: #1b75bb;
}

.tp-contact-accordion .accordion-body {
    padding: 0 0 1.25rem;
    color: #60707f;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .tp-contact-sidebar {
        position: static;
        padding-top: 0;
    }

    .tp-contact-form {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .tp-contact-hero {
        min-height: 210px;
    }

    .tp-contact-main,
    .tp-contact-faq {
        padding: 3rem 0;
    }

    .tp-contact-privacy {
        grid-template-columns: 1fr;
    }

    .tp-contact-map {
        padding-bottom: 3rem;
    }
}

/* ============================================
   19. Reference-Inspired Resources Page
   ============================================ */

.tp-resources-page {
    background: #ffffff;
    color: #2b3640;
}

.tp-resources-page .container {
    max-width: 1120px;
}

.tp-resources-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tp-resources-page .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.tp-resources-hero {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1e2f3f;
}

.tp-resources-hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 30, 39, 0.74) 0%, rgba(20, 30, 39, 0.38) 52%, rgba(20, 30, 39, 0.1) 100%),
        url('../images/tajhero-3.png') center 46% / cover no-repeat;
    filter: saturate(0.94) contrast(1.04);
    transform: scale(1.02);
}

.tp-resources-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #0b73d9, #42b6e8 48%, #f2a23a);
}

.tp-resources-hero .container {
    position: relative;
    z-index: 1;
}

.tp-resources-hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 650;
    margin: 0;
}

.tp-resources-crumbs {
    padding: 1.15rem 0;
    background: #ffffff;
    border-bottom: 1px solid #eef2f5;
}

.tp-resources-listing {
    padding: 3.8rem 0 5.1rem;
}

.tp-resource-list {
    display: grid;
    gap: 2.35rem;
}

.tp-resource-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.35rem;
    align-items: start;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid #dde5ec;
}

.tp-resource-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #edf2f6;
    border-radius: 2px;
}

.tp-resource-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.tp-resource-item:hover .tp-resource-thumb img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.tp-resource-copy h2 {
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 800;
    line-height: 1.13;
    margin: 0 0 0.25rem;
}

.tp-resource-copy h2 a {
    color: #4a535c;
    text-decoration: none;
}

.tp-resource-copy h2 a:hover {
    color: #0b73d9;
}

.tp-resource-meta {
    color: #7c8791;
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.45;
    margin-bottom: 0.45rem;
}

.tp-resource-copy p:not(.tp-resource-meta) {
    color: #5f6a74;
    font-size: 0.95rem;
    line-height: 1.62;
    margin-bottom: 0.8rem;
}

.tp-resource-read {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #0b73d9;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.tp-resource-read i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.tp-resource-read:hover {
    color: #0958a5;
}

.tp-resource-read:hover i {
    transform: translateX(3px);
}

.tp-resource-sidebar {
    position: sticky;
    top: 132px;
    padding: 0.15rem 0 0;
}

.tp-resource-sidebar h2 {
    color: #5b636b;
    font-size: 1.28rem;
    font-weight: 800;
    margin: 0 0 0.85rem;
}

.tp-resource-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tp-resource-sidebar li {
    border-bottom: 1px solid #dce3ea;
}

.tp-resource-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 38px;
    color: #357ab9;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.tp-resource-sidebar a:hover,
.tp-resource-sidebar a.active {
    color: #0b73d9;
}

.tp-resource-sidebar span {
    color: #87919a;
    font-size: 0.78rem;
}

.tp-resource-empty {
    max-width: 680px;
    padding: 2.2rem;
    border: 1px solid #dce5ec;
    border-left: 5px solid #0b73d9;
    background:
        linear-gradient(135deg, rgba(11, 115, 217, 0.08), rgba(242, 162, 58, 0.08)),
        #ffffff;
    box-shadow: 0 18px 42px rgba(31, 49, 64, 0.08);
}

.tp-resource-empty .tp-kicker {
    color: #0b73d9;
    margin-bottom: 0.5rem;
}

.tp-resource-empty h2 {
    color: #38434d;
    font-size: clamp(1.45rem, 2.7vw, 2.15rem);
    font-weight: 750;
    line-height: 1.12;
    margin-bottom: 0.8rem;
}

.tp-resource-empty p {
    color: #5e6a74;
    line-height: 1.7;
}

.tp-resource-empty .btn,
.tp-resource-pagination a,
.tp-resources-faq .btn {
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.tp-resource-pagination {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2.8rem;
}

.tp-resource-pagination a {
    color: #337ab7;
    text-decoration: none;
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.tp-resource-pagination a:hover,
.tp-resource-pagination a.active {
    color: #ffffff;
    background: #0b73d9;
    border-color: #0b73d9;
}

.tp-resources-faq {
    padding: 4.8rem 0;
    background: #ffffff;
    border-top: 1px solid #edf2f6;
}

.tp-resources-faq .tp-kicker {
    color: #0b73d9;
    margin-bottom: 0.85rem;
}

.tp-resources-faq h2 {
    color: #4f5963;
    font-size: clamp(1.7rem, 3.1vw, 2.45rem);
    font-weight: 500;
    line-height: 1.16;
    margin-bottom: 1.1rem;
}

.tp-resources-faq p {
    color: #5f6d78;
    line-height: 1.72;
}

.tp-resources-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #cbd4dc;
}

.tp-resources-accordion .accordion-button {
    padding: 1rem 0;
    background: #ffffff;
    color: #4a5560;
    box-shadow: none;
    font-size: 0.95rem;
    font-weight: 800;
}

.tp-resources-accordion .accordion-button:not(.collapsed) {
    color: #0b73d9;
}

.tp-resources-accordion .accordion-body {
    padding: 0 0 1.2rem;
    color: #60707f;
    line-height: 1.7;
}

.tp-article-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: end;
    overflow: hidden;
    padding: 5rem 0 3.6rem;
    background: #1d2d3b;
}

.tp-article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 29, 37, 0.88) 0%, rgba(20, 29, 37, 0.58) 48%, rgba(20, 29, 37, 0.24) 100%),
        var(--article-hero-image) center / cover no-repeat;
    filter: saturate(0.94) contrast(1.04);
    transform: scale(1.03);
}

.tp-article-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #0b73d9, #44b8e8 48%, #f2a23a);
}

.tp-article-hero .container {
    position: relative;
    z-index: 1;
}

.tp-article-hero .tp-kicker {
    color: #5dc4f0;
    margin-bottom: 0.85rem;
}

.tp-article-hero h1 {
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(2rem, 4.6vw, 4rem);
    font-weight: 700;
    line-height: 1.03;
    margin: 0;
}

.tp-article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.4rem;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 650;
}

.tp-article-hero-meta span {
    position: relative;
}

.tp-article-hero-meta span + span::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    left: -0.78rem;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #44b8e8;
}

.tp-article-main {
    padding: 4rem 0 4.6rem;
    background:
        linear-gradient(180deg, rgba(11, 115, 217, 0.035), transparent 220px),
        #ffffff;
}

.tp-article-panel {
    border: 1px solid #dce5ec;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(30, 48, 64, 0.08);
}

.tp-article-cover {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.4;
    object-fit: cover;
    background: #edf2f6;
}

.tp-article-excerpt {
    margin: 0;
    padding: 2rem 2.2rem 0;
    color: #3d4852;
    font-size: clamp(1.12rem, 2vw, 1.38rem);
    line-height: 1.58;
    font-weight: 600;
}

.tp-article-content {
    padding: 1.6rem 2.2rem 0;
    color: #4e5c68;
    font-size: 1.02rem;
    line-height: 1.86;
}

.tp-article-content p {
    margin-bottom: 1.35rem;
}

.tp-article-content p:first-child::first-letter {
    float: left;
    color: #0b73d9;
    font-size: 4rem;
    line-height: 0.82;
    font-weight: 800;
    padding: 0.2rem 0.45rem 0 0;
}

.tp-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.4rem 2.2rem 2rem;
}

.tp-article-tags a {
    color: #0b73d9;
    background: #eef7fd;
    border: 1px solid #cce9fa;
    padding: 0.38rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.tp-article-tags a:hover {
    color: #ffffff;
    background: #0b73d9;
    border-color: #0b73d9;
}

.tp-article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 2.2rem 2.2rem;
    padding-top: 1.4rem;
    border-top: 1px solid #dce5ec;
}

.tp-article-share h2 {
    color: #4c5660;
    font-size: 1rem;
    font-weight: 850;
    margin: 0;
}

.tp-article-share div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tp-article-share a {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #3f4b55;
    border: 1px solid #cdd6de;
    padding: 0.45rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.tp-article-share a:hover {
    color: #ffffff;
    background: #0b73d9;
    border-color: #0b73d9;
}

.tp-article-sidebar {
    position: sticky;
    top: 132px;
    display: grid;
    gap: 1.3rem;
}

.tp-article-sidebox {
    padding: 1.35rem 1.45rem;
    border: 1px solid #dce5ec;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(30, 48, 64, 0.06);
}

.tp-article-sidebox h2 {
    color: #4f5963;
    font-size: 1.12rem;
    font-weight: 850;
    margin-bottom: 0.85rem;
}

.tp-article-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tp-article-category-list li {
    border-bottom: 1px solid #dce3ea;
}

.tp-article-category-list li:last-child {
    border-bottom: 0;
}

.tp-article-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 38px;
    color: #357ab9;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.tp-article-category-list a:hover {
    color: #0b73d9;
}

.tp-article-category-list span {
    color: #87919a;
    font-size: 0.78rem;
}

.tp-article-related-mini {
    display: grid;
    gap: 0.9rem;
}

.tp-article-related-mini a {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    color: #3d4852;
    text-decoration: none;
}

.tp-article-related-mini img {
    width: 78px;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    background: #edf2f6;
}

.tp-article-related-mini strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.24;
}

.tp-article-related-mini small {
    display: block;
    color: #7a8792;
    font-size: 0.76rem;
    margin-top: 0.2rem;
}

.tp-article-related-mini a:hover strong {
    color: #0b73d9;
}

.tp-article-quote-box {
    background:
        linear-gradient(135deg, rgba(11, 115, 217, 0.1), rgba(242, 162, 58, 0.1)),
        #ffffff;
    border-left: 5px solid #0b73d9;
}

.tp-article-quote-box .tp-kicker {
    color: #0b73d9;
    margin-bottom: 0.45rem;
}

.tp-article-quote-box .btn,
.tp-article-related .btn {
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.tp-article-related {
    padding: 4.5rem 0;
    background: #f5f7f9;
    border-top: 1px solid #e5ebf0;
}

.tp-article-related .tp-kicker {
    color: #0b73d9;
    margin-bottom: 0.65rem;
}

.tp-article-related h2 {
    color: #4f5963;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 550;
    margin-bottom: 1.5rem;
}

.tp-article-related-card {
    display: grid;
    height: 100%;
    padding-bottom: 1.2rem;
    background: #ffffff;
    border: 1px solid #dce5ec;
    color: #3f4b55;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(30, 48, 64, 0.07);
}

.tp-article-related-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #edf2f6;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.tp-article-related-card span,
.tp-article-related-card strong,
.tp-article-related-card small {
    margin-left: 1rem;
    margin-right: 1rem;
}

.tp-article-related-card span {
    color: #0b73d9;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    margin-top: 1rem;
    text-transform: uppercase;
}

.tp-article-related-card strong {
    color: #3f4b55;
    font-size: 1.02rem;
    line-height: 1.2;
    margin-top: 0.35rem;
}

.tp-article-related-card small {
    color: #6b7782;
    line-height: 1.55;
    margin-top: 0.5rem;
}

.tp-article-related-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.tp-article-related-card:hover strong {
    color: #0b73d9;
}

@media (max-width: 991.98px) {
    .tp-resource-sidebar,
    .tp-article-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .tp-resources-hero {
        min-height: 220px;
    }

    .tp-resources-listing,
    .tp-resources-faq {
        padding: 3.2rem 0;
    }

    .tp-resource-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tp-resource-thumb {
        aspect-ratio: 16 / 9;
    }

    .tp-resource-empty {
        padding: 1.5rem;
    }

    .tp-article-hero {
        min-height: 330px;
        padding: 4rem 0 2.6rem;
    }

    .tp-article-main {
        padding: 3rem 0;
    }

    .tp-article-excerpt,
    .tp-article-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .tp-article-tags {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .tp-article-share {
        align-items: flex-start;
        flex-direction: column;
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }

    .tp-article-related {
        padding: 3.2rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tp-resources-page .animate-on-scroll,
    .tp-resource-thumb img,
    .tp-resource-read i,
    .tp-article-related-card img {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   19. Bulk Order RFQ Page
   ============================================ */

.tp-bulk-page {
    background: #f5f8fb;
}

.tp-bulk-hero {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(16, 29, 42, 0.96), rgba(16, 29, 42, 0.82) 48%, rgba(16, 29, 42, 0.38)),
        url('../images/tajhero-2.png') center / cover no-repeat;
}

.tp-bulk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: 5rem 0;
}

.tp-bulk-hero-copy {
    max-width: 720px;
}

.tp-bulk-hero h1 {
    max-width: 760px;
    margin: 0.75rem 0 1rem;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.98;
    font-weight: 850;
}

.tp-bulk-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.tp-bulk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.tp-bulk-hero-media {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.tp-bulk-hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.tp-bulk-hero-badge {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    color: #172638;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.tp-bulk-hero-badge strong,
.tp-bulk-hero-badge span {
    display: block;
}

.tp-bulk-hero-badge strong {
    font-size: 1.02rem;
    font-weight: 850;
}

.tp-bulk-hero-badge span {
    margin-top: 0.25rem;
    color: #60707f;
    font-size: 0.9rem;
    line-height: 1.45;
}

.tp-bulk-intro {
    padding: 2.5rem 0 1rem;
}

.tp-bulk-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tp-bulk-stat {
    min-height: 150px;
    padding: 1.35rem;
    border: 1px solid #dce5ec;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(31, 49, 64, 0.07);
}

.tp-bulk-stat i {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    border-radius: 8px;
    color: #ffffff;
    background: #0b73d9;
    font-size: 1.25rem;
}

.tp-bulk-stat strong,
.tp-bulk-stat span {
    display: block;
}

.tp-bulk-stat strong {
    margin-bottom: 0.35rem;
    color: #172638;
    font-weight: 850;
}

.tp-bulk-stat span {
    color: #60707f;
    line-height: 1.55;
}

.tp-bulk-form-section {
    padding: 3rem 0 4rem;
}

.tp-bulk-alert {
    max-width: 980px;
    margin: 0 auto 1.25rem;
}

.tp-bulk-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 1.4rem;
    align-items: start;
}

.tp-bulk-side,
.tp-bulk-form-card {
    border: 1px solid #dce5ec;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(31, 49, 64, 0.08);
}

.tp-bulk-side {
    position: sticky;
    top: 132px;
    padding: 1.6rem;
}

.tp-bulk-side h2,
.tp-bulk-form-head h2,
.tp-bulk-process-head h2 {
    margin: 0.35rem 0 1rem;
    color: #172638;
    font-weight: 850;
}

.tp-bulk-side ul {
    display: grid;
    gap: 0.9rem;
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
}

.tp-bulk-side li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.75rem;
    align-items: start;
    color: #536170;
    line-height: 1.55;
}

.tp-bulk-side li i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #0b73d9;
    background: #edf6ff;
}

.tp-bulk-contact-strip {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
    background: #172638;
}

.tp-bulk-contact-strip span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.tp-bulk-contact-strip a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.tp-bulk-form-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.tp-bulk-form-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.35rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5edf3;
}

.tp-bulk-form-head span {
    flex: 0 0 auto;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    color: #8a540b;
    background: #fff4df;
    font-size: 0.8rem;
    font-weight: 850;
}

.tp-bulk-form-card .form-label {
    color: #314150;
    font-weight: 800;
}

.tp-bulk-form-card .form-control {
    min-height: 48px;
    border-color: #d5e0ea;
    border-radius: 6px;
}

.tp-bulk-form-card textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.tp-bulk-process {
    padding: 4rem 0 5rem;
    color: #ffffff;
    background: #26313d;
}

.tp-bulk-process-head {
    max-width: 660px;
    margin-bottom: 1.5rem;
}

.tp-bulk-process-head h2 {
    color: #ffffff;
}

.tp-bulk-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tp-bulk-process-card {
    min-height: 190px;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.tp-bulk-process-card span {
    color: #44b8e8;
    font-size: 0.82rem;
    font-weight: 900;
}

.tp-bulk-process-card h3 {
    margin: 0.7rem 0 0.55rem;
    color: #ffffff;
    font-weight: 850;
}

.tp-bulk-process-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.btn-google-auth {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid #d5e0ea;
    color: #253544;
    background: #ffffff;
    font-weight: 800;
}

.btn-google-auth:hover {
    border-color: #b9c8d6;
    color: #0b73d9;
    background: #f8fbfe;
}

.account-sidebar .avatar-image {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 0.75rem;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991.98px) {
    .tp-bulk-hero-grid,
    .tp-bulk-layout,
    .tp-bulk-stat-grid,
    .tp-bulk-process-grid {
        grid-template-columns: 1fr;
    }

    .tp-bulk-side {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .tp-bulk-hero {
        min-height: auto;
    }

    .tp-bulk-hero-grid {
        padding: 3.5rem 0;
    }

    .tp-bulk-hero-actions .btn {
        width: 100%;
    }

    .tp-bulk-form-head {
        flex-direction: column;
    }
}

/* ============================================
   20. Customer Account Dashboard
   ============================================ */

.account-page {
    background:
        linear-gradient(135deg, rgba(11, 115, 217, 0.055), transparent 34rem),
        #f4f7fa;
}

.account-page .breadcrumb-section {
    background: #ffffff !important;
    border-bottom: 1px solid #edf2f6;
}

.account-page .section-padding,
.account-page .dashboard-section,
.account-page .orders-section,
.account-page .wishlist-section {
    padding: 3.6rem 0 4.6rem;
}

.account-sidebar {
    position: sticky;
    top: 132px;
    overflow: hidden;
    padding: 0 !important;
    border: 1px solid #dce5ec;
    border-radius: 8px !important;
    box-shadow: 0 16px 38px rgba(31, 49, 64, 0.08) !important;
}

.account-sidebar > .text-center {
    position: relative;
    margin: 0 !important;
    padding: 1.45rem 1.15rem !important;
    border: 0 !important;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(68, 184, 232, 0.2), transparent 58%),
        #172638;
}

.account-sidebar > .text-center::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, #0b73d9, #44b8e8 55%, #f2a23a);
}

.account-sidebar h5 {
    color: #ffffff;
    font-weight: 800;
}

.account-sidebar .text-muted {
    color: rgba(255, 255, 255, 0.72) !important;
}

.avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #0b73d9 !important;
    background: #ffffff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    font-size: 1.35rem;
    font-weight: 850;
}

.account-nav {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
    background: #ffffff;
}

.account-nav-item {
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.78rem;
    color: #4e5b66;
    border-radius: 6px;
    font-weight: 750;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.account-nav-item i {
    width: 22px;
    color: #7b8793;
    transition: color 0.2s ease;
}

.account-nav-item:hover {
    color: #0b73d9;
    background: #f0f7fe;
    transform: translateX(2px);
}

.account-nav-item:hover i {
    color: #0b73d9;
}

.account-nav-item.active {
    color: #ffffff;
    background: #0b73d9;
    box-shadow: 0 10px 22px rgba(11, 115, 217, 0.22);
}

.account-nav-item.active i {
    color: #ffffff;
}

.account-nav-item.text-danger:not(.active) {
    color: #b42318 !important;
}

.account-nav-item.text-danger:not(.active):hover {
    background: #fff1f0;
}

.account-page .welcome-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 8px !important;
    background:
        linear-gradient(135deg, rgba(68, 184, 232, 0.22), transparent 50%),
        #172638 !important;
    box-shadow: 0 18px 42px rgba(31, 49, 64, 0.13) !important;
}

.account-page .welcome-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, #0b73d9, #44b8e8 55%, #f2a23a);
}

.account-page .welcome-card h2 {
    color: #ffffff;
    font-weight: 750;
}

.account-page .welcome-card p {
    color: rgba(255, 255, 255, 0.82);
}

.account-page .stat-card,
.account-page .recent-orders,
.account-page .quick-actions,
.account-page .order-header,
.account-page .order-items,
.account-page .customer-info,
.account-page .delivery-info,
.account-page .order-notes,
.account-page .orders-table,
.account-page .no-orders,
.account-page .no-wishlist,
.account-page .wishlist-card,
.account-page form.bg-white {
    border: 1px solid #dce5ec;
    border-radius: 8px !important;
    box-shadow: 0 16px 38px rgba(31, 49, 64, 0.07) !important;
}

.account-page .stat-card {
    min-height: 118px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.account-page .stat-card:hover,
.account-page .wishlist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(31, 49, 64, 0.12) !important;
}

.account-page .stat-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
}

.account-page h3,
.account-page h4,
.account-page h5,
.account-page h6 {
    color: #34404b;
    font-weight: 800;
}

.account-page .table {
    margin-bottom: 0;
    vertical-align: middle;
}

.account-page .table thead th {
    color: #667481;
    background: #f7fafc;
    border-bottom: 1px solid #dce5ec;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.account-page .table-hover tbody tr:hover,
.account-page .order-row:hover {
    background: #f7fbff;
}

.account-page .orders-table {
    overflow: hidden;
}

.account-page .order-row {
    transition: background 0.18s ease;
}

.account-page .order-row:last-child {
    border-bottom: 0 !important;
}

.account-page .quick-action-card .card {
    border: 1px solid #e2e9ef !important;
    border-radius: 8px;
    background: #f7fafc !important;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.account-page .quick-action-card:hover .card {
    border-color: rgba(11, 115, 217, 0.35) !important;
    background: #ffffff !important;
    box-shadow: 0 14px 30px rgba(31, 49, 64, 0.09);
    transform: translateY(-3px);
}

.account-page .wishlist-card {
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.account-page .wishlist-card img {
    transition: transform 0.45s ease, filter 0.45s ease;
}

.account-page .wishlist-card:hover img {
    transform: scale(1.04);
    filter: saturate(1.08);
}

.account-page .btn {
    border-radius: 4px;
    font-weight: 750;
}

.account-page .btn-primary {
    background: #0b73d9;
    border-color: #0b73d9;
}

.account-page .btn-primary:hover,
.account-page .btn-primary:focus {
    background: #0958a5;
    border-color: #0958a5;
}

.account-page .btn-outline-primary {
    color: #0b73d9;
    border-color: #0b73d9;
}

.account-page .btn-outline-primary:hover,
.account-page .btn-outline-primary:focus {
    color: #ffffff;
    background: #0b73d9;
    border-color: #0b73d9;
}

.account-page .form-control,
.account-page .form-select,
.account-page textarea.form-control {
    border-color: #cbd5df;
    border-radius: 4px;
}

.account-page .form-control:focus,
.account-page .form-select:focus,
.account-page textarea.form-control:focus {
    border-color: #0b73d9;
    box-shadow: 0 0 0 0.18rem rgba(11, 115, 217, 0.16);
}

.account-page .badge {
    border-radius: 4px;
    font-weight: 800;
}

.account-page .alert {
    border-radius: 8px;
    border: 1px solid #dce5ec;
    box-shadow: 0 12px 26px rgba(31, 49, 64, 0.06);
}

@media (max-width: 991.98px) {
    .account-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .account-page .section-padding,
    .account-page .dashboard-section,
    .account-page .orders-section,
    .account-page .wishlist-section {
        padding: 2.8rem 0 3.4rem;
    }

    .account-page .welcome-card,
    .account-page .recent-orders,
    .account-page .quick-actions,
    .account-page .order-header,
    .account-page .order-items,
    .account-page .customer-info,
    .account-page .delivery-info,
    .account-page .order-notes,
    .account-page .no-orders,
    .account-page .no-wishlist,
    .account-page form.bg-white {
        padding: 1.25rem !important;
    }
}

.account-auth-page {
    background:
        linear-gradient(135deg, rgba(11, 115, 217, 0.055), transparent 34rem),
        #f4f7fa;
}

.account-auth-page .breadcrumb-section {
    background: #ffffff !important;
    border-bottom: 1px solid #edf2f6;
}

.account-auth-page .login-card,
.account-auth-page .registration-card,
.account-auth-page .section-padding .bg-white.border.rounded {
    overflow: hidden;
    border: 1px solid #dce5ec !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 48px rgba(31, 49, 64, 0.1) !important;
}

.account-auth-page .login-card > .text-center:first-child,
.account-auth-page .registration-card > .text-center:first-child,
.account-auth-page .section-padding .bg-white.border.rounded > h1:first-child {
    margin: -3rem -3rem 2rem !important;
    padding: 2rem;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(68, 184, 232, 0.2), transparent 58%),
        #172638;
}

.account-auth-page .section-padding .bg-white.border.rounded > h1:first-child {
    margin: -1.5rem -1.5rem 1.5rem !important;
}

.account-auth-page .login-card h1,
.account-auth-page .registration-card h1,
.account-auth-page .section-padding .bg-white.border.rounded > h1:first-child {
    color: #ffffff;
    font-weight: 800;
}

.account-auth-page .login-card > .text-center:first-child .text-muted,
.account-auth-page .registration-card > .text-center:first-child .text-muted {
    color: rgba(255, 255, 255, 0.74) !important;
}

.account-auth-page .form-control,
.account-auth-page .form-select,
.account-auth-page textarea.form-control {
    border-color: #cbd5df;
    border-radius: 4px;
}

.account-auth-page .form-control:focus,
.account-auth-page .form-select:focus,
.account-auth-page textarea.form-control:focus {
    border-color: #0b73d9;
    box-shadow: 0 0 0 0.18rem rgba(11, 115, 217, 0.16);
}

.account-auth-page .btn {
    border-radius: 4px;
    font-weight: 800;
}

.account-auth-page .btn-primary {
    background: #0b73d9;
    border-color: #0b73d9;
}

.account-auth-page .btn-primary:hover,
.account-auth-page .btn-primary:focus {
    background: #0958a5;
    border-color: #0958a5;
}

.account-auth-page a.text-primary {
    color: #0b73d9 !important;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .account-auth-page .login-card,
    .account-auth-page .registration-card {
        padding: 1.5rem !important;
    }

    .account-auth-page .login-card > .text-center:first-child,
    .account-auth-page .registration-card > .text-center:first-child {
        margin: -1.5rem -1.5rem 1.5rem !important;
        padding: 1.6rem;
    }
}

/* ============================================
   21. Industries We Serve Page
   ============================================ */

.tp-industries-page {
    background: #ffffff;
    color: #2b3640;
}

.tp-industries-page .container {
    max-width: 1120px;
}

.tp-industries-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.72s ease, transform 0.72s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tp-industries-page .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.tp-industries-hero {
    position: relative;
    min-height: 275px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1d2d3b;
}

.tp-industries-hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(19, 29, 38, 0.82), rgba(19, 29, 38, 0.44) 54%, rgba(19, 29, 38, 0.18)),
        url('../images/tajhero-2.png') center / cover no-repeat;
    filter: grayscale(0.22) saturate(0.9) contrast(1.06);
    transform: scale(1.02);
}

.tp-industries-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #0b73d9, #44b8e8 55%, #f2a23a);
}

.tp-industries-hero .container {
    position: relative;
    z-index: 1;
}

.tp-industries-hero h1 {
    max-width: 780px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 650;
    margin: 0;
}

.tp-industries-crumbs {
    padding: 1.1rem 0;
    background: #ffffff;
    border-bottom: 1px solid #eef2f5;
}

.tp-industries-intro {
    padding: 3.3rem 0 4rem;
}

.tp-industries-intro h2,
.tp-industries-section-heading h2 {
    color: #555f68;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 800;
    line-height: 1.13;
    margin-bottom: 0.45rem;
}

.tp-industries-subtitle {
    color: #5f6d78;
    font-size: 1.18rem;
    font-weight: 500;
    margin-bottom: 1.3rem;
}

.tp-industries-intro p,
.tp-industries-section-heading p,
.tp-industry-item p {
    color: #5d6974;
    line-height: 1.7;
}

.tp-industries-proof-list {
    display: grid;
    gap: 0.62rem;
    margin: 1.45rem 0 1.7rem;
    padding: 0;
    list-style: none;
}

.tp-industries-proof-list li {
    position: relative;
    padding-left: 1.35rem;
    color: #5d6974;
    line-height: 1.58;
}

.tp-industries-proof-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0b73d9;
    box-shadow: 0 0 0 4px rgba(11, 115, 217, 0.1);
}

.tp-industries-proof-list strong,
.tp-industry-item strong {
    color: #36424d;
    font-weight: 850;
}

.tp-industries-note {
    margin-top: 1.6rem;
    padding-top: 1.35rem;
    border-top: 1px solid #ccd6df;
    color: #555f68;
    font-size: 1.08rem;
    line-height: 1.72;
}

.tp-industries-carousel-wrap {
    max-width: 430px;
    margin-left: auto;
}

.tp-industries-carousel-wrap .carousel {
    overflow: hidden;
    border-radius: 2px;
    background: #edf2f6;
    box-shadow: 0 18px 42px rgba(31, 49, 64, 0.13);
}

.tp-industries-carousel-wrap img {
    width: 100%;
    aspect-ratio: 1.52 / 1;
    object-fit: cover;
}

.tp-industries-carousel-wrap .carousel-indicators {
    position: static;
    gap: 0.38rem;
    margin: 1rem 0 0;
}

.tp-industries-carousel-wrap .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #9aa5af;
    opacity: 1;
}

.tp-industries-carousel-wrap .carousel-indicators .active {
    background: #0b73d9;
    transform: scale(1.1);
}

.tp-industries-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(280px, 100%);
    min-height: 54px;
    margin: 2rem auto 0;
    border-radius: 0;
    background: #0b73d9;
    border-color: #0b73d9;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.tp-industries-quote:hover {
    background: #0958a5;
    border-color: #0958a5;
}

.tp-industries-grid-section {
    padding: 4.8rem 0 5.7rem;
    background: #f4f6f8;
}

.tp-industries-section-heading {
    max-width: 930px;
    margin-bottom: 3rem;
}

.tp-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.3rem 4.6rem;
}

.tp-industry-item {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 1.45rem;
    align-items: start;
}

.tp-industry-item img {
    width: 148px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #dde5ec;
    box-shadow: 0 18px 34px rgba(31, 49, 64, 0.18);
}

.tp-industry-item h3 {
    color: #555f68;
    font-size: 1.5rem;
    font-weight: 850;
    line-height: 1.15;
    margin: 0 0 0.55rem;
}

.tp-industry-item p {
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
}

.tp-industry-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.42rem;
    color: #0b73d9;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.tp-industry-item a i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.tp-industry-item a:hover {
    color: #0958a5;
}

.tp-industry-item a:hover i {
    transform: translateX(3px);
}

.tp-industries-cta {
    padding: 5rem 0;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(11, 115, 217, 0.12), transparent 35%),
        #3d3f41;
}

.tp-industries-cta .container {
    max-width: 1040px;
}

.tp-industries-cta-icon {
    color: #ffffff;
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
}

.tp-industries-cta h2 {
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    font-weight: 850;
    margin-bottom: 1.4rem;
}

.tp-industries-cta p {
    max-width: 980px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    line-height: 1.75;
}

.tp-industries-cta .btn {
    border-radius: 0;
    margin-top: 1.05rem;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .tp-industries-carousel-wrap {
        max-width: none;
        margin-left: 0;
    }

    .tp-industries-grid {
        grid-template-columns: 1fr;
        gap: 2.7rem;
    }
}

@media (max-width: 767.98px) {
    .tp-industries-hero {
        min-height: 220px;
    }

    .tp-industries-intro,
    .tp-industries-grid-section,
    .tp-industries-cta {
        padding: 3.2rem 0;
    }

    .tp-industry-item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 1rem;
    }

    .tp-industry-item img {
        width: 96px;
    }

    .tp-industry-item h3 {
        font-size: 1.22rem;
    }
}

@media (max-width: 480px) {
    .tp-industry-item {
        grid-template-columns: 1fr;
    }

    .tp-industry-item img {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tp-industries-page .animate-on-scroll,
    .tp-industry-item a i {
        animation: none !important;
        transition: none !important;
    }
}

/* Static product information pages */
.tp-static-product-page {
    background: #f5f8fb;
    color: #24313d;
}

.tp-static-product-hero {
    padding: 5rem 0 4.25rem;
    background:
        radial-gradient(circle at top left, rgba(27, 117, 187, 0.12), transparent 28%),
        linear-gradient(135deg, #edf4fb 0%, #ffffff 58%);
}

.tp-static-product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 3rem;
    align-items: center;
}

.tp-static-product-copy h1 {
    margin-bottom: 1rem;
    color: #182734;
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    line-height: 1.05;
}

.tp-static-product-copy p:not(.tp-kicker) {
    max-width: 680px;
    color: #536170;
    font-size: 1.08rem;
    line-height: 1.8;
}

.tp-static-product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.tp-static-product-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.95rem;
    border: 1px solid #c8d9e8;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #21435f;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.tp-static-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.tp-static-product-media {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid #d9e3eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(28, 47, 63, 0.12);
}

.tp-static-product-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.tp-static-product-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
    gap: 0.75rem;
}

.tp-static-product-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    background: transparent;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-static-product-thumb img {
    aspect-ratio: 1 / 1;
}

.tp-static-product-thumb:hover,
.tp-static-product-thumb.is-active {
    border-color: #1b75bb;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(27, 117, 187, 0.16);
}

.tp-static-product-main,
.tp-static-product-info,
.tp-static-product-benefits,
.tp-static-product-applications,
.tp-static-product-commerce,
.tp-static-product-related {
    padding: 4.5rem 0;
}

.tp-static-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
    align-items: start;
}

.tp-static-product-panel,
.tp-static-product-side {
    border: 1px solid #dce6ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(35, 53, 69, 0.08);
}

.tp-static-product-panel {
    padding: 2rem;
}

.tp-static-product-panel h2,
.tp-static-product-info h2,
.tp-static-product-side h2 {
    margin-bottom: 1rem;
    color: #182734;
}

.tp-static-product-panel p {
    color: #566575;
    line-height: 1.8;
}

.tp-static-product-panel p:last-child {
    margin-bottom: 0;
}

.tp-static-product-side {
    position: sticky;
    top: 8rem;
    padding: 1.5rem;
}

.tp-static-product-side p {
    color: #5b6876;
    line-height: 1.7;
}

.tp-static-product-benefits {
    background: #ffffff;
}

.tp-static-product-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tp-static-product-benefit-card,
.tp-static-product-solution-card {
    padding: 1.4rem;
    border: 1px solid #dce7f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(31, 47, 63, 0.07);
}

.tp-static-product-benefit-card h3,
.tp-static-product-solution-card h3,
.tp-static-product-commerce-card h3 {
    margin-bottom: 0.7rem;
    color: #183148;
    font-size: 1.08rem;
}

.tp-static-product-benefit-card p,
.tp-static-product-solution-card p,
.tp-static-product-commerce-card p {
    margin: 0;
    color: #5a6875;
    line-height: 1.72;
}

.tp-static-product-info {
    background: #ffffff;
}

.tp-static-product-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.tp-static-product-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.tp-static-product-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e2ebf2;
    border-radius: 8px;
    background: #f8fbfd;
    color: #43515f;
}

.tp-static-product-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tp-static-product-solution-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.tp-static-product-cta {
    padding: 4rem 0;
    background:
        linear-gradient(135deg, rgba(10, 48, 81, 0.96), rgba(24, 102, 163, 0.92)),
        #123a5b;
    color: #ffffff;
}

.tp-static-product-cta-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 44px rgba(8, 29, 47, 0.2);
}

.tp-static-product-cta-wrap h2 {
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.tp-static-product-cta-wrap p:not(.tp-kicker) {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
}

.tp-static-product-cta-wrap .tp-kicker {
    color: #a8d8a8;
    background: rgba(103, 184, 70, 0.2);
    border-color: rgba(103, 184, 70, 0.3);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.tp-static-product-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
}

.tp-static-product-commerce {
    background: #ffffff;
}

.tp-static-product-applications {
    overflow: hidden;
    background:
        linear-gradient(180deg, #f7fafc 0%, #edf3f7 100%);
}

.tp-static-product-applications .tp-section-heading {
    max-width: 680px;
}

.tp-static-product-application-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 1rem;
}

.tp-static-product-application-card {
    grid-column: span 3;
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce6ee;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
    box-shadow: 0 14px 34px rgba(31, 47, 63, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-static-product-application-card:first-child {
    grid-column: span 6;
    grid-row: span 2;
}

.tp-static-product-application-card:nth-child(2),
.tp-static-product-application-card:nth-child(3) {
    grid-column: span 3;
}

.tp-static-product-application-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 210px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: clamp(0.55rem, 1.4vw, 0.9rem);
    background: #ffffff;
}

.tp-static-product-application-card:first-child img {
    min-height: 436px;
    aspect-ratio: 16 / 10;
}

.tp-static-product-commerce-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tp-static-product-commerce-card {
    overflow: hidden;
    border: 1px solid #dce6ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(30, 48, 64, 0.08);
}

.tp-static-product-commerce-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.tp-static-product-commerce-card div {
    padding: 1.25rem;
}

.tp-static-product-related {
    background: #f6f8fb;
}

.tp-static-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tp-static-product-card {
    overflow: hidden;
    border: 1px solid #dce6ee;
    border-radius: 8px;
    background: #ffffff;
    color: #263746;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-static-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(35, 53, 69, 0.12);
}

.tp-static-product-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.tp-static-product-card span {
    display: block;
    padding: 1rem;
    font-weight: 700;
}


/* ============================================================
   Static Product Pages — Responsive (single authoritative block)
   ============================================================ */

/* ── Page container ── */
.tp-static-product-page .container {
    max-width: 1180px;
}

/* ── Typography balance ── */
.tp-static-product-page h1,
.tp-static-product-page h2,
.tp-static-product-page h3,
.tp-static-product-page p,
.tp-static-product-page li {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ── All grids are responsive by default ── */
.tp-static-product-hero-grid,
.tp-static-product-layout,
.tp-static-product-info-grid,
.tp-static-product-solution-grid,
.tp-static-product-benefit-grid,
.tp-static-product-commerce-grid,
.tp-static-product-grid {
    min-width: 0;
}

/* ── CTA actions ── */
.tp-static-product-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

/* ── Tablet: ≤ 991px ── */
@media (max-width: 991.98px) {
    /* Hero: stack image above copy */
    .tp-static-product-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .tp-static-product-media {
        order: -1;
    }
    .tp-static-product-media > img {
        width: 100%;
        border-radius: 10px;
        aspect-ratio: 16 / 9;
        max-height: 320px;
    }

    /* All 2-col grids collapse to 1 col */
    .tp-static-product-layout,
    .tp-static-product-info-grid,
    .tp-static-product-solution-grid,
    .tp-static-product-cta-wrap {
        grid-template-columns: 1fr !important;
    }

    /* Sidebar un-sticks */
    .tp-static-product-side {
        position: static;
    }

    /* Benefit / commerce grids go 2-col */
    .tp-static-product-benefit-grid,
    .tp-static-product-commerce-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Application images tile 3-wide */
    .tp-static-product-application-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Related / card grid 2-col */
    .tp-static-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp-static-product-cta-actions {
        justify-content: flex-start;
    }

    /* Gap tweaks */
    .tp-static-product-hero-grid,
    .tp-static-product-layout,
    .tp-static-product-info-grid,
    .tp-static-product-cta-wrap {
        gap: 1.35rem;
    }
}

/* ── Mobile: ≤ 575px ── */
@media (max-width: 575.98px) {
    /* Section padding */
    .tp-static-product-main,
    .tp-static-product-info,
    .tp-static-product-benefits,
    .tp-static-product-applications,
    .tp-static-product-commerce,
    .tp-static-product-related {
        padding: 2.5rem 0;
    }

    /* Hero text */
    .tp-static-product-hero {
        padding: 2rem 0 1.75rem;
    }
    .tp-static-product-copy h1 {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        max-width: none;
    }
    .tp-static-product-copy p:not(.tp-kicker) {
        font-size: 0.97rem;
        line-height: 1.7;
        max-width: none;
    }

    /* Full-width buttons */
    .tp-static-product-actions .btn,
    .tp-static-product-cta-actions .btn,
    .tp-static-product-highlights span {
        width: 100%;
        justify-content: center;
    }

    /* All remaining grids: 1 col */
    .tp-static-product-benefit-grid,
    .tp-static-product-application-grid,
    .tp-static-product-commerce-grid,
    .tp-static-product-grid,
    .tp-static-product-cta-wrap {
        grid-template-columns: 1fr !important;
    }

    /* Application cards full width */
    .tp-static-product-application-card,
    .tp-static-product-application-card:first-child,
    .tp-static-product-application-card:nth-child(2),
    .tp-static-product-application-card:nth-child(3) {
        grid-column: 1 / -1;
    }
    .tp-static-product-application-card img,
    .tp-static-product-application-card:first-child img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    /* Thumbs */
    .tp-static-product-thumbs {
        grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
        gap: 0.4rem;
    }
    .tp-static-product-thumb {
        width: 52px;
        height: 52px;
    }

    /* Padding tweaks */
    .tp-static-product-panel,
    .tp-static-product-side,
    .tp-static-product-cta-wrap {
        padding: 1.25rem 1rem;
    }

    /* Highlights pills */
    .tp-static-product-highlights {
        gap: 0.4rem;
    }
    .tp-static-product-highlights span {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }
}

/* ── Very small: ≤ 360px ── */
@media (max-width: 360px) {
    .tp-static-product-copy h1 {
        font-size: clamp(1.4rem, 10vw, 1.9rem);
    }
}

/* Homepage static product spotlight slider */
.tp-home-product-slider {
    padding: 4.8rem 0;
    background:
        linear-gradient(135deg, rgba(27, 117, 187, 0.08), rgba(103, 184, 70, 0.08)),
        #ffffff;
    overflow: hidden;
}

.tp-home-product-slider-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: end;
    margin-bottom: 2rem;
}

.tp-home-product-slider-head h2 {
    max-width: 760px;
    margin: 0;
    color: #182734;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 760;
    line-height: 1.12;
}

.tp-home-product-slider-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.tp-home-product-slider-actions .btn,
.tp-home-product-card-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 820;
    text-decoration: none;
}

.tp-home-product-carousel {
    position: relative;
    padding: 0 3.4rem 2.8rem;
}

.tp-home-product-slide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.tp-home-product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dce7f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(30, 48, 64, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tp-home-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 117, 187, 0.34);
    box-shadow: 0 26px 54px rgba(30, 48, 64, 0.14);
}

.tp-home-product-image {
    display: block;
    overflow: hidden;
    background: #eef3f7;
}

.tp-home-product-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tp-home-product-card:hover .tp-home-product-image img {
    transform: scale(1.06);
}

.tp-home-product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.15rem;
}

.tp-home-product-body p {
    margin: 0 0 0.55rem;
    color: #1b75bb;
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tp-home-product-body h3 {
    margin: 0 0 0.65rem;
    font-size: 1.08rem;
    font-weight: 820;
    line-height: 1.2;
}

.tp-home-product-body h3 a {
    color: #182734;
    text-decoration: none;
}

.tp-home-product-body h3 a:hover {
    color: #1b75bb;
}

.tp-home-product-body span {
    flex: 1;
    display: block;
    color: #5c6976;
    font-size: 0.92rem;
    line-height: 1.6;
}

.tp-home-product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.05rem;
}

.tp-home-product-card-actions .btn-outline-success {
    border: 2px solid #28a745;
    color: #237f38;
    background: #ffffff;
}

.tp-home-product-card-actions .btn-outline-success:hover {
    background: #28a745;
    color: #ffffff;
}

.tp-home-product-control {
    width: 44px;
    height: 44px;
    top: 42%;
    bottom: auto;
    border: 0;
    border-radius: 999px;
    background: #1b75bb;
    opacity: 1;
    box-shadow: 0 14px 28px rgba(27, 117, 187, 0.24);
}

.tp-home-product-control:hover {
    background: #0f5e9d;
}

.tp-home-product-control.carousel-control-prev {
    left: 0;
}

.tp-home-product-control.carousel-control-next {
    right: 0;
}

.tp-home-product-control .carousel-control-prev-icon,
.tp-home-product-control .carousel-control-next-icon {
    width: 1.05rem;
    height: 1.05rem;
}

.tp-home-product-indicators {
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    gap: 0.45rem;
}

.tp-home-product-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: #b5c5d4;
    opacity: 1;
}

.tp-home-product-indicators .active {
    background: #1b75bb;
}

@media (max-width: 991.98px) {
    .tp-home-product-slider-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .tp-home-product-slider-actions {
        justify-content: flex-start;
    }

    .tp-home-product-carousel {
        padding-left: 0;
        padding-right: 0;
    }

    .tp-home-product-slide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp-home-product-control {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .tp-home-product-slider {
        padding: 3.2rem 0;
    }

    .tp-home-product-slide {
        grid-template-columns: 1fr;
    }

    .tp-home-product-card {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        align-items: stretch;
    }

    .tp-home-product-image img {
        height: 100%;
        min-height: 178px;
        aspect-ratio: auto;
    }

    .tp-home-product-body {
        padding: 1rem;
    }

    .tp-home-product-card-actions .btn {
        flex: 1 1 100px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tp-home-product-slider-actions .btn,
    .tp-home-product-card-actions .btn {
        width: 100%;
        flex-basis: 100%;
    }

    .tp-home-product-card {
        grid-template-columns: 1fr;
    }

    .tp-home-product-image img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

/* Homepage product spotlight finish */
.tp-home-product-slider {
    position: relative;
    padding: 5.4rem 0;
    background:
        linear-gradient(110deg, rgba(11, 31, 49, 0.98), rgba(21, 78, 123, 0.95) 48%, rgba(20, 112, 103, 0.9)),
        #10283c;
}

.tp-home-product-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.48;
    pointer-events: none;
}

.tp-home-product-slider::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(90deg, #1b75bb, #67b846 52%, #f0a43a);
}

.tp-home-product-slider .container {
    position: relative;
    z-index: 1;
}

.tp-home-product-slider-shell {
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 80px rgba(2, 14, 25, 0.22);
    backdrop-filter: blur(4px);
}

.tp-home-product-slider-head {
    padding: clamp(0.4rem, 1.5vw, 0.85rem);
}

.tp-home-product-slider-head .tp-kicker {
    color: #bde9a4;
}

.tp-home-product-slider-head h2 {
    color: #ffffff;
    max-width: 820px;
}

.tp-home-product-lead {
    max-width: 780px;
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
}

.tp-home-product-slider-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.68);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.tp-home-product-slider-actions .btn-outline-light:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #16334d;
}

.tp-home-product-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0 clamp(0.4rem, 1.5vw, 0.85rem) 1.25rem;
}

.tp-home-product-proof span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid #67b846;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.tp-home-product-proof strong {
    color: #ffffff;
    font-weight: 900;
}

.tp-home-product-carousel {
    padding: 0 3.2rem 3rem;
}

.tp-home-product-slide {
    gap: 1.15rem;
}

.tp-home-product-card {
    border: 0;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(3, 18, 31, 0.24);
}

.tp-home-product-image {
    position: relative;
}

.tp-home-product-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgba(13, 28, 42, 0.45), transparent);
    pointer-events: none;
}

.tp-home-product-image img {
    aspect-ratio: 1.42 / 1;
}

.tp-home-product-body {
    padding: 1.25rem;
}

.tp-home-product-body p {
    color: #287bbd;
}

.tp-home-product-body h3 {
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    min-height: 3rem;
}

.tp-home-product-body span {
    min-height: 4.55rem;
}

.tp-home-product-card-actions {
    padding-top: 0.3rem;
}

.tp-home-product-control {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(3, 18, 31, 0.28);
}

.tp-home-product-control:hover {
    background: #67b846;
}

.tp-home-product-control .carousel-control-prev-icon,
.tp-home-product-control .carousel-control-next-icon {
    filter: invert(1) grayscale(1);
}

.tp-home-product-indicators [data-bs-target] {
    background: rgba(255, 255, 255, 0.45);
}

.tp-home-product-indicators .active {
    background: #67b846;
}

.tp-home-product-quote-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin: 0 clamp(0.4rem, 1.5vw, 0.85rem);
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.18);
}

.tp-home-product-quote-strip strong,
.tp-home-product-quote-strip span {
    display: block;
}

.tp-home-product-quote-strip strong {
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.tp-home-product-quote-strip span {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.tp-home-product-quote-strip .btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 850;
}

@media (max-width: 991.98px) {
    .tp-home-product-slider {
        padding: 4rem 0;
    }

    .tp-home-product-proof {
        grid-template-columns: 1fr;
    }

    .tp-home-product-carousel {
        padding: 0 0 3rem;
    }

    .tp-home-product-quote-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .tp-home-product-slider {
        padding: 3rem 0;
    }

    .tp-home-product-slider-shell {
        padding: 0.9rem;
    }

    .tp-home-product-card {
        grid-template-columns: 128px minmax(0, 1fr);
    }

    .tp-home-product-image img {
        min-height: 190px;
    }

    .tp-home-product-body h3,
    .tp-home-product-body span {
        min-height: 0;
    }

    .tp-home-product-proof span {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .tp-home-product-slider-shell,
    .tp-home-product-quote-strip {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .tp-home-product-card {
        grid-template-columns: 1fr;
    }

    .tp-home-product-image img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .tp-home-product-quote-strip .btn {
        width: 100%;
    }
}

/* Homepage mobile composition polish */
@media (max-width: 767.98px) {
    .tp-home {
        overflow: hidden;
    }

    .tp-home .animate-on-scroll,
    .tp-home .animate-on-scroll.animated,
    .tp-hero-content {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .tp-home .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .tp-section-heading,
    .tp-intro .col-lg-8,
    .tp-categories-band .col-lg-5,
    .tp-proof-band .col-lg-5,
    .tp-faq-band .col-lg-5 {
        max-width: 100%;
        text-align: center;
    }

    .tp-section-heading {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.35rem;
    }

    .tp-section-heading h2,
    .tp-intro h2,
    .tp-categories-band h2,
    .tp-proof-band h2,
    .tp-faq-band h2 {
        font-size: clamp(1.65rem, 7.5vw, 2.25rem);
        line-height: 1.12;
    }

    .tp-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .tp-hero,
    .tp-hero-carousel,
    .tp-hero-carousel .carousel-inner,
    .tp-hero-carousel .carousel-item {
        min-height: auto;
    }

    .tp-hero::after {
        height: 70px;
        bottom: -38px;
    }

    .tp-hero-slide-media {
        background-position: 58% center;
    }

    .tp-hero-carousel .tp-hero-inner {
        min-height: auto;
        padding: 2.2rem 0 4.7rem;
    }

    .tp-hero-carousel .tp-hero-inner .row {
        width: 100%;
        flex-direction: column;
        --bs-gutter-x: 0;
        --bs-gutter-y: 1.4rem;
        margin-left: 0;
        margin-right: 0;
    }

    .tp-hero-carousel .tp-hero-inner .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .tp-hero-content {
        position: relative;
        z-index: 5;
        max-width: 36rem;
        margin: 0 auto;
        text-align: center;
    }

    .tp-hero .tp-kicker {
        margin-bottom: 0.9rem;
        border-radius: 999px;
    }

    .tp-hero h1 {
        max-width: none;
        font-size: clamp(2rem, 10.5vw, 3rem);
        line-height: 1.05;
    }

    .tp-hero-copy {
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .tp-hero-content .d-flex {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem !important;
    }

    .tp-hero .btn,
    .tp-intro .btn,
    .tp-categories-band .btn,
    .tp-proof-band .btn,
    .tp-faq-band .btn {
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        white-space: normal;
    }

    .tp-capability-grid {
        display: flex;
        gap: 0.85rem;
        margin: 1.9rem -1rem 0;
        padding: 0 1rem 0.4rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .tp-capability-grid::-webkit-scrollbar {
        display: none;
    }

    .tp-capability-card {
        min-width: min(82vw, 310px);
        min-height: 168px;
        scroll-snap-align: center;
        border-radius: 10px;
        text-align: left;
    }

    .tp-capability-card i {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.85rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.12);
    }

    .tp-hero-carousel .carousel-indicators {
        left: 50%;
        bottom: 30px;
        justify-content: center;
        transform: translateX(-50%);
    }

    .tp-intro {
        padding: 3.4rem 0 3rem;
    }

    .tp-intro .row {
        --bs-gutter-y: 1.5rem;
    }

    .tp-intro-image {
        max-height: 220px;
        padding: 0.6rem;
        border: 1px solid #dce5ec;
        border-radius: 10px;
        background: #f6f9fb;
    }

    .tp-stat-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
        margin: 1.35rem 0;
        padding: 0;
        border: 0;
    }

    .tp-stat-row div {
        min-height: 88px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.72rem 0.35rem;
        border: 1px solid #dce5ec;
        border-radius: 8px;
        background: #f7fafc;
    }

    .tp-stat-row strong {
        font-size: clamp(1.35rem, 8vw, 1.75rem);
    }

    .tp-stat-row span {
        margin-top: 0.32rem;
        font-size: 0.65rem;
        line-height: 1.25;
    }

    .tp-product-band,
    .tp-industries,
    .tp-categories-band,
    .tp-proof-band,
    .tp-faq-band {
        padding: 3.2rem 0;
    }

    .tp-product-band .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    .tp-product-band .row > [class*="col-"] {
        width: 50%;
        flex: 0 0 50%;
    }

    .tp-service-card {
        padding: 0.72rem;
        border-radius: 10px;
        box-shadow: 0 12px 28px rgba(31, 49, 64, 0.07);
    }

    .tp-service-card img {
        aspect-ratio: 1 / 0.88;
        margin-bottom: 0.75rem;
        border-radius: 8px;
    }

    .tp-service-card span {
        font-size: 0.92rem;
        line-height: 1.2;
    }

    .tp-service-card p {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.78rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .tp-home-product-slider {
        padding: 3.2rem 0;
    }

    .tp-home-product-slider-shell {
        border-radius: 12px;
        padding: 1rem;
    }

    .tp-home-product-slider-head {
        gap: 1rem;
        padding: 0.2rem;
        text-align: center;
    }

    .tp-home-product-slider-head h2 {
        font-size: clamp(1.6rem, 7.4vw, 2.2rem);
    }

    .tp-home-product-lead {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.94rem;
    }

    .tp-home-product-slider-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        justify-content: stretch;
    }

    .tp-home-product-proof {
        gap: 0.55rem;
        padding: 0 0 1rem;
    }

    .tp-home-product-proof span {
        justify-content: center;
        border-left: 0;
        border-top: 3px solid #67b846;
        border-radius: 8px;
        text-align: center;
    }

    .tp-home-product-carousel {
        padding-bottom: 2.4rem;
    }

    .tp-home-product-card {
        grid-template-columns: 118px minmax(0, 1fr);
        border-radius: 10px;
    }

    .tp-home-product-image img {
        min-height: 176px;
    }

    .tp-home-product-body {
        padding: 0.95rem;
    }

    .tp-home-product-body p {
        font-size: 0.66rem;
    }

    .tp-home-product-body h3 {
        font-size: 1rem;
    }

    .tp-home-product-body span {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .tp-home-product-card-actions {
        gap: 0.45rem;
        margin-top: 0.8rem;
    }

    .tp-home-product-card-actions .btn {
        min-height: 38px;
        flex: 1 1 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.75rem;
    }

    .tp-home-product-quote-strip {
        border-radius: 10px;
        text-align: center;
    }

    .tp-categories-band .row,
    .tp-proof-band .row,
    .tp-faq-band .row {
        --bs-gutter-y: 1.35rem;
    }

    .tp-accordion-list {
        overflow: hidden;
        border: 1px solid #dce5ec;
        border-radius: 10px;
    }

    .tp-accordion-list a {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.45rem 0.75rem;
        padding: 0.95rem;
        text-align: left;
    }

    .tp-accordion-list a i {
        grid-row: 1 / span 2;
        grid-column: 2;
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #eef6fd;
        color: var(--primary-color);
    }

    .tp-accordion-list small {
        grid-column: 1;
    }

    .tp-industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .tp-industry-tile {
        display: flex;
        min-height: 0;
        flex-direction: column;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 12px 28px rgba(31, 49, 64, 0.07);
    }

    .tp-industry-tile img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.35 / 1;
    }

    .tp-industry-tile span {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem;
        font-size: 0.82rem;
        line-height: 1.25;
        text-align: center;
    }

    .tp-proof-grid {
        gap: 0.75rem;
    }

    .tp-proof-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 0.15rem 0.75rem;
        padding: 1rem;
        border-radius: 10px;
        text-align: left;
    }

    .tp-proof-card i {
        grid-row: 1 / span 2;
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        border-radius: 8px;
        background: #eef6fd;
    }

    .tp-proof-card h3 {
        margin-bottom: 0.2rem;
    }

    .tp-proof-card p {
        font-size: 0.84rem;
    }

    .tp-home-faq {
        overflow: hidden;
        border: 1px solid #dce5ec;
        border-radius: 10px;
        background: #ffffff;
    }

    .tp-home-faq .accordion-item {
        border-bottom-color: #e3eaf0;
    }

    .tp-home-faq .accordion-button {
        padding: 1rem;
        font-size: 0.92rem;
    }

    .tp-home-faq .accordion-body {
        padding: 0 1rem 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .tp-hero-content .d-flex,
    .tp-home-product-slider-actions {
        grid-template-columns: 1fr;
    }

    .tp-product-band .row > [class*="col-"],
    .tp-industry-grid {
        width: 100%;
        flex-basis: 100%;
        grid-template-columns: 1fr;
    }

    .tp-service-card {
        display: grid;
        grid-template-columns: 102px minmax(0, 1fr);
        gap: 0.8rem;
        align-items: center;
    }

    .tp-service-card img {
        height: 102px;
        margin: 0;
    }

    .tp-home-product-card {
        grid-template-columns: 1fr;
    }

    .tp-home-product-image img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .tp-stat-row div {
        min-height: 82px;
    }
}

@media (max-width: 360px) {
    .tp-stat-row {
        grid-template-columns: 1fr;
    }

    .tp-stat-row div {
        min-height: 0;
    }
}


/* ============================================
   Global Shared Components
   (used across all pages)
   ============================================ */

/* .tp-kicker — the small label above headings */
.tp-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: #eef6fd;
    border: 1px solid #c5dff5;
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* On dark backgrounds (CTA sections) */
.tp-static-product-cta .tp-kicker,
.tp-bulk-hero .tp-kicker,
[class*="bg-dark"] .tp-kicker,
[style*="background"] .tp-kicker {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

/* .tp-section-heading — the centered heading + kicker block */
.tp-section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.tp-section-heading h2 {
    margin-bottom: 0.5rem;
}

.tp-section-heading p {
    color: #5a6672;
    margin: 0;
}

/* Animate on scroll */
.animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.animate-on-scroll.reveal-up    { opacity: 0; transform: translateY(28px); }
.animate-on-scroll.reveal-left  { opacity: 0; transform: translateX(-28px); }
.animate-on-scroll.reveal-right { opacity: 0; transform: translateX(28px); }
.animate-on-scroll.animated     { opacity: 1 !important; transform: none !important; }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ============================================
   About Page
   ============================================ */

/* Hero */
.tp-about-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2d44 0%, #1b75bb 100%);
    color: #fff;
    padding: 4rem 0;
}

.tp-about-hero-media {
    position: absolute;
    inset: 0;
    background: url('../images/placeholders/page5.jpeg') center/cover no-repeat;
    opacity: 0.18;
}

.tp-about-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.tp-about-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.tp-about-hero-copy h1 {
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.tp-about-hero-copy p {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0;
}

.tp-about-hero-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
}

/* Breadcrumbs section */
.tp-about-crumbs {
    padding: 0.65rem 0;
    border-bottom: 1px solid #e3eaf2;
    background: #f8fbfe;
}

/* Intro section */
.tp-about-intro {
    padding: 4rem 0;
}

.tp-about-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.tp-about-lead {
    font-size: 1.05rem;
    color: #3a4a5a;
    line-height: 1.7;
}

.tp-about-proof-strip {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid #e3eaf2;
    border-bottom: 1px solid #e3eaf2;
}

.tp-about-proof-strip div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tp-about-proof-strip strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.tp-about-proof-strip span {
    font-size: 0.8rem;
    color: #7a8997;
}

.tp-about-service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.tp-about-service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #3a4a5a;
}

.tp-about-service-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

.tp-about-product-showcase {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.tp-about-product-showcase img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.tp-float-card {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 6px 22px rgba(31,49,64,0.13);
    color: var(--primary-color);
}

.tp-float-card.one   { top: 14%;  left: -12px; }
.tp-float-card.two   { top: 50%;  right: -12px; }
.tp-float-card.three { bottom: 14%; left: 12%; }

/* Dark section */
.tp-about-dark {
    position: relative;
    background: #0e2a40;
    color: #fff;
    padding: 4rem 0;
    overflow: hidden;
}

.tp-about-dark-media {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(27,117,187,0.25) 0%, transparent 70%);
}

.tp-about-dark .container { position: relative; z-index: 1; }
.tp-about-dark h2, .tp-about-dark h3 { color: #fff; }
.tp-about-dark p { color: rgba(255,255,255,0.75); }

.tp-about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tp-about-values > div {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.25rem 0.9rem;
    align-items: start;
}

.tp-about-values span {
    grid-row: span 2;
    font-size: 1.75rem;
    font-weight: 900;
    color: rgba(27,117,187,0.5);
    line-height: 1;
    margin-top: 0.2rem;
}

.tp-about-values strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}

.tp-about-values p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.5;
}

.tp-about-teams {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.tp-about-teams h3 { font-size: 1rem; color: #fff; margin-bottom: 0.4rem; }
.tp-about-teams p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.55; }

.tp-about-capability-gallery {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.tp-about-capability-gallery > div:first-child { margin-bottom: 1.5rem; }
.tp-about-capability-gallery h3 { color: #fff; font-size: 1.1rem; }
.tp-about-capability-gallery p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.tp-about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0.75rem;
}

.tp-about-capability-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Trust / industries section */
.tp-about-trust { padding: 4rem 0; background: #f7fafd; }

.tp-about-wordmarks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.tp-about-wordmarks span {
    padding: 0.35rem 0.9rem;
    background: #fff;
    border: 1px solid #dce5ec;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3a4a5a;
}

.tp-about-partner-list { margin-top: 2rem; }

.tp-about-partner-list .row > div span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: #fff;
    border: 1px solid #e3eaf2;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #263340;
}

.tp-about-partner-list .row > div span::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Timeline */
.tp-about-timeline {
    padding: 4rem 0;
    position: relative;
}

.tp-about-timeline-line {
    position: absolute;
    left: 50%;
    top: 4rem;
    bottom: 4rem;
    width: 2px;
    background: #e3eaf2;
    transform: translateX(-50%);
}

.tp-about-timeline-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: calc(50% + 2rem);
}

.tp-about-timeline-item.is-right {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: calc(50% + 2rem);
}

.tp-about-timeline-item article {
    max-width: 380px;
    background: #fff;
    border: 1px solid #dce5ec;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(31,49,64,0.06);
}

.tp-about-timeline-item article span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tp-about-timeline-item article h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.tp-about-timeline-item article p  { font-size: 0.88rem; color: #5a6672; margin: 0; line-height: 1.55; }

/* Careers / CTA */
.tp-about-careers { padding: 4rem 0; background: #f0f7ff; }
.tp-careers-image-wrap img { width: 100%; border-radius: 14px; box-shadow: 0 12px 36px rgba(31,49,64,0.1); }

/* FAQ */
.tp-about-faq { padding: 4rem 0; }
.tp-about-accordion .accordion-item { border-color: #e3eaf2; }
.tp-about-accordion .accordion-button:not(.collapsed) { background: #eef6fd; color: var(--primary-color); }
.tp-about-accordion .accordion-button:focus { box-shadow: none; }

/* About responsive */
@media (max-width: 991.98px) {
    .tp-about-hero { min-height: 260px; padding: 3rem 0; }
    .tp-about-teams { grid-template-columns: 1fr; gap: 1.5rem; }
    .tp-about-capability-grid { grid-template-columns: repeat(2,1fr); }
    .tp-about-timeline-line { display: none; }
    .tp-about-timeline-item,
    .tp-about-timeline-item.is-right {
        padding: 0;
        justify-content: flex-start;
    }
    .tp-about-timeline-item article { max-width: 100%; width: 100%; }
    .tp-float-card { display: none; }
}

@media (max-width: 767.98px) {
    .tp-about-intro { padding: 2rem 0; }
    .tp-about-dark  { padding: 2rem 0; }
    .tp-about-trust { padding: 2rem 0; }
    .tp-about-timeline  { padding: 2rem 0; }
    .tp-about-careers   { padding: 2rem 0; }
    .tp-about-faq       { padding: 2rem 0; }
    .tp-about-proof-strip { gap: 1rem; flex-wrap: wrap; }
    .tp-about-capability-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================
   Bulk Order Page
   ============================================ */

.tp-bulk-page { background: #f7fafd; }

/* Hero */
.tp-bulk-hero {
    background: linear-gradient(135deg, #0f2d44 0%, #1b75bb 100%);
    padding: 4rem 0;
    color: #fff;
}

.tp-bulk-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tp-bulk-hero-copy h1 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.tp-bulk-hero-copy p {
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.tp-bulk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tp-bulk-hero-media {
    position: relative;
}

.tp-bulk-hero-media img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    display: block;
}

.tp-bulk-hero-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: #fff;
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    box-shadow: 0 8px 24px rgba(31,49,64,0.15);
    max-width: 220px;
}

.tp-bulk-hero-badge strong { display: block; font-size: 0.9rem; color: #1f2c38; margin-bottom: 0.2rem; }
.tp-bulk-hero-badge span   { font-size: 0.78rem; color: #5a6672; line-height: 1.35; }

/* Intro stats */
.tp-bulk-intro { padding: 2.5rem 0; background: #fff; }

.tp-bulk-stat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.tp-bulk-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid #dce5ec;
    border-radius: 12px;
    background: #f7fafd;
}

.tp-bulk-stat i       { font-size: 1.5rem; color: var(--primary-color); }
.tp-bulk-stat strong  { font-size: 1rem; font-weight: 700; color: #1f2c38; }
.tp-bulk-stat span    { font-size: 0.85rem; color: #5a6672; line-height: 1.45; }

/* Form section */
.tp-bulk-form-section { padding: 3rem 0; }
.tp-bulk-alert { margin-bottom: 1.5rem; border-radius: 10px; }

.tp-bulk-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.tp-bulk-side {
    background: #fff;
    border: 1px solid #dce5ec;
    border-radius: 14px;
    padding: 1.75rem;
    position: sticky;
    top: 110px;
}

.tp-bulk-side h2 { font-size: 1.1rem; margin-bottom: 1rem; }

.tp-bulk-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tp-bulk-side ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #3a4a5a;
    line-height: 1.5;
}

.tp-bulk-side ul li i { color: var(--primary-color); margin-top: 0.1rem; flex-shrink: 0; }

.tp-bulk-contact-strip {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e3eaf2;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tp-bulk-contact-strip span { font-size: 0.82rem; color: #7a8997; }
.tp-bulk-contact-strip a    { font-size: 0.92rem; font-weight: 700; color: var(--primary-color); }

/* Form card */
.tp-bulk-form-card {
    background: #fff;
    border: 1px solid #dce5ec;
    border-radius: 14px;
    padding: 2rem;
}

.tp-bulk-form-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.tp-bulk-form-head h2 { margin-bottom: 0; font-size: 1.2rem; }
.tp-bulk-form-head span { font-size: 0.8rem; color: #7a8997; white-space: nowrap; padding-top: 0.2rem; }

/* Process section */
.tp-bulk-process { padding: 3rem 0; background: #fff; }

.tp-bulk-process-head { margin-bottom: 2rem; }
.tp-bulk-process-head h2 { margin-bottom: 0; }

.tp-bulk-process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.tp-bulk-process-card {
    background: #f7fafd;
    border: 1px solid #dce5ec;
    border-radius: 12px;
    padding: 1.75rem;
}

.tp-bulk-process-card span { display: block; font-size: 2rem; font-weight: 900; color: #d0e5f8; line-height: 1; margin-bottom: 0.75rem; }
.tp-bulk-process-card h3   { font-size: 1rem; margin-bottom: 0.4rem; }
.tp-bulk-process-card p    { font-size: 0.88rem; color: #5a6672; margin: 0; line-height: 1.55; }

/* Bulk responsive */
@media (max-width: 991.98px) {
    .tp-bulk-hero-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .tp-bulk-hero-media  { display: none; }
    .tp-bulk-stat-grid   { grid-template-columns: 1fr 1fr; }
    .tp-bulk-layout      { grid-template-columns: 1fr; }
    .tp-bulk-side        { position: static; }
    .tp-bulk-process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
    .tp-bulk-hero    { padding: 2.5rem 0; }
    .tp-bulk-hero-copy h1 { font-size: 1.4rem; }
    .tp-bulk-hero-actions { flex-direction: column; }
    .tp-bulk-hero-actions .btn { width: 100%; text-align: center; }
    .tp-bulk-stat-grid   { grid-template-columns: 1fr; gap: 0.75rem; }
    .tp-bulk-form-card   { padding: 1.25rem; }
    .tp-bulk-form-head   { flex-direction: column; gap: 0.25rem; }
    .tp-bulk-process-grid { grid-template-columns: 1fr; }
    .tp-bulk-form-section { padding: 1.75rem 0; }
    .tp-bulk-process      { padding: 1.75rem 0; }
}

/* ============================================
   Contact Page — ensure layout works on mobile
   ============================================ */

.tp-contact-hero,
.tp-contact-page > section:first-of-type {
    padding: 3rem 0 2rem;
    background: #f7fafd;
    border-bottom: 1px solid #e3eaf2;
}

@media (max-width: 767.98px) {
    .tp-contact-page .row,
    .tp-contact-page [class*="col-"] {
        width: 100%;
    }
}

/* ============================================
   Blog Page
   ============================================ */

.tp-blog-page section { padding: 3rem 0; }

@media (max-width: 767.98px) {
    .tp-blog-page section { padding: 2rem 0; }
    .tp-blog-page .row > [class*="col-"] { margin-bottom: 1.25rem; }
}

/* ============================================
   Global Mobile Safety Net
   — catches any tp-* container overflowing on small screens
   ============================================ */

@media (max-width: 767.98px) {
    /* Prevent any section from overflowing viewport */
    main section,
    main > div {
        max-width: 100%;
        overflow-x: clip;
    min-width: 320px;
    }

    /* Any two-column grid that isn't already handled */
    [class*="tp-"][class*="-grid"]:not(.tp-static-product-hero-grid):not(.tp-static-product-info-grid):not(.tp-static-product-solution-grid) {
        grid-template-columns: 1fr !important;
    }

    /* Keep 2-col on small cards */
    .tp-static-product-grid,
    .tp-static-product-application-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Hero headings */
    .tp-about-hero-copy h1,
    .tp-bulk-hero-copy h1 {
        font-size: 1.5rem;
    }

    /* Full-width buttons in hero areas */
    [class*="tp-"][class*="-hero-actions"] {
        flex-direction: column;
    }

    [class*="tp-"][class*="-hero-actions"] .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Tilt on hover — desktop only */
@media (hover: hover) {
    .tilt-on-hover {
        transition: transform 0.3s ease;
    }
    .tilt-on-hover:hover {
        transform: perspective(600px) rotateY(-4deg) rotateX(2deg) scale(1.02);
    }
}

/* ============================================
   Contact Page — Full Styles
   ============================================ */

.tp-contact-page { background: #f7fafd; }

/* Hero */
.tp-contact-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2d44 0%, #1b75bb 100%);
    padding: 3rem 0 2.5rem;
}

.tp-contact-hero-media {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(27,117,187,0.35) 0%, transparent 65%);
}

.tp-contact-hero .container { position: relative; z-index: 1; }

.tp-contact-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin: 0;
}

/* Breadcrumb row */
.tp-contact-crumbs {
    padding: 0.65rem 0;
    background: #f8fbfe;
    border-bottom: 1px solid #e3eaf2;
}

/* Main section */
.tp-contact-main {
    padding: 3.5rem 0;
}

/* Support block */
.tp-contact-block {
    margin-bottom: 1.75rem;
}

.tp-contact-block h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.tp-contact-support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 0.1rem;
    transition: opacity 0.18s;
}

.tp-contact-support-link:hover { opacity: 0.75; color: var(--primary-color); text-decoration: none; }

/* Privacy notice */
.tp-contact-privacy {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: #f0f7ff;
    border: 1px solid #c5dff5;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.75rem;
}

.tp-contact-privacy i {
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.tp-contact-privacy p { font-size: 0.88rem; color: #3a4a5a; margin: 0; line-height: 1.55; }

/* Contact form */
.tp-contact-form-wrap h2 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.tp-contact-form-wrap > p { font-size: 0.9rem; color: #5a6672; margin-bottom: 1.25rem; }

.tp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tp-contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3a46;
    margin-bottom: 0.3rem;
}

.tp-contact-form label span { font-weight: 400; color: #7a8997; }

.tp-contact-form input,
.tp-contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #cdd8e3;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1f2c38;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
    font-family: inherit;
}

.tp-contact-form input:focus,
.tp-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27,117,187,0.14);
}

.tp-contact-form textarea { resize: vertical; min-height: 130px; }

.tp-contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s;
    align-self: flex-start;
}

.tp-contact-form button[type="submit"]:hover { background: var(--primary-dark); }

.tp-contact-form-note {
    font-size: 0.78rem;
    color: #8a97a3;
    margin: 0;
}

/* Sidebar */
.tp-contact-sidebar {
    background: #fff;
    border: 1px solid #dce5ec;
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: sticky;
    top: 110px;
}

.tp-contact-sidebar-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.tp-contact-sidebar p {
    font-size: 0.9rem;
    color: #3a4a5a;
    margin: 0;
}

.tp-contact-sidebar p a { color: var(--primary-color); font-weight: 600; }

.tp-contact-sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e3eaf2;
}

.tp-contact-sidebar-section strong { font-size: 0.85rem; color: #1f2c38; }
.tp-contact-sidebar-section span   { font-size: 0.83rem; color: #5a6672; }

.tp-contact-sidebar-link {
    display: block;
    padding: 0.6rem 0.9rem;
    background: #eef6fd;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid #c5dff5;
    transition: background 0.18s;
}

.tp-contact-sidebar-link:hover { background: #d8ecfb; color: var(--primary-color); text-decoration: none; }

/* Map */
.tp-contact-map { padding: 0 0 2.5rem; }
.tp-contact-map iframe { border-radius: 12px; }

/* FAQ section */
.tp-contact-faq { padding: 3rem 0; background: #f0f7ff; }
.tp-contact-accordion .accordion-item { border-color: #e3eaf2; }
.tp-contact-accordion .accordion-button:not(.collapsed) { background: #eef6fd; color: var(--primary-color); }
.tp-contact-accordion .accordion-button:focus { box-shadow: none; }

/* Contact responsive */
@media (max-width: 991.98px) {
    .tp-contact-sidebar { position: static; }
    .tp-contact-main { padding: 2rem 0; }
}

@media (max-width: 767.98px) {
    .tp-contact-hero { min-height: 160px; padding: 2rem 0; }
    .tp-contact-hero h1 { font-size: 1.5rem; }
    .tp-contact-form button[type="submit"] { width: 100%; }
    .tp-contact-faq { padding: 2rem 0; }
}

/* ============================================
   Industries Page — Full Styles
   ============================================ */

.tp-industries-page { background: #f7fafd; }

/* Hero */
.tp-industries-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2d44 0%, #1b75bb 100%);
    padding: 3rem 0 2.5rem;
}

.tp-industries-hero-media {
    position: absolute;
    inset: 0;
    background: url('../images/placeholders/page1.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.tp-industries-hero .container { position: relative; z-index: 1; }

.tp-industries-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin: 0;
}

/* Crumbs */
.tp-industries-crumbs {
    padding: 0.65rem 0;
    background: #f8fbfe;
    border-bottom: 1px solid #e3eaf2;
}

/* Intro */
.tp-industries-intro { padding: 3.5rem 0; }

.tp-industries-subtitle {
    font-size: 1.05rem;
    color: #3a4a5a;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tp-industries-proof-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tp-industries-proof-list li {
    font-size: 0.92rem;
    color: #3a4a5a;
    padding-left: 1rem;
    position: relative;
    line-height: 1.55;
}

.tp-industries-proof-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.tp-industries-note {
    background: #f0f7ff;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: #3a4a5a;
    line-height: 1.55;
    margin-top: 1rem;
}

/* Carousel wrap */
.tp-industries-carousel-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(31,49,64,0.12);
}

.tp-industries-carousel-wrap .carousel-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.tp-industries-carousel-wrap .carousel-indicators {
    bottom: 10px;
}

.tp-industries-quote {
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

/* Grid section */
.tp-industries-grid-section { padding: 3rem 0; background: #fff; }

.tp-industries-section-heading {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.tp-industries-section-heading p { color: #5a6672; margin: 0; }

.tp-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tp-industry-item {
    background: #fff;
    border: 1px solid #dce5ec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(31,49,64,0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tp-industry-item:hover {
    box-shadow: 0 10px 28px rgba(31,49,64,0.12);
    transform: translateY(-3px);
}

.tp-industry-item img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
}

.tp-industry-item > div {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tp-industry-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #1f2c38;
}

.tp-industry-item p {
    font-size: 0.88rem;
    color: #4a5568;
    margin-bottom: 0.6rem;
    line-height: 1.55;
}

.tp-industry-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.tp-industry-item a:hover { text-decoration: underline; }

/* CTA */
.tp-industries-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1b3a52 0%, #1b75bb 100%);
    text-align: center;
    color: #fff;
}

.tp-industries-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 auto 1.25rem;
}

.tp-industries-cta h2 { color: #fff; margin-bottom: 0.75rem; }
.tp-industries-cta p  { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 0.75rem; font-size: 0.95rem; }

/* Industries responsive */
@media (max-width: 991.98px) {
    .tp-industries-intro { padding: 2.5rem 0; }
    .tp-industries-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .tp-industries-hero { min-height: 160px; padding: 2rem 0; }
    .tp-industries-hero h1 { font-size: 1.5rem; }
    .tp-industries-intro { padding: 2rem 0; }
    .tp-industries-grid  { grid-template-columns: 1fr; gap: 1rem; }
    .tp-industries-grid-section { padding: 2rem 0; }
    .tp-industries-cta { padding: 2.5rem 0; }
    .tp-industries-cta h2 { font-size: 1.3rem; }
}

/* ============================================
   Blog Page — Full Styles
   ============================================ */

.tp-blog-hero,
.tp-blog-post-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f2d44 0%, #1b75bb 100%);
    padding: 3rem 0;
    overflow: hidden;
    color: #fff;
}

.tp-blog-hero h1,
.tp-blog-post-hero h1 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.25rem); margin: 0; }

.tp-blog-main { padding: 3rem 0; }

.tp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tp-blog-card {
    background: #fff;
    border: 1px solid #dce5ec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(31,49,64,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.tp-blog-card:hover { box-shadow: 0 10px 28px rgba(31,49,64,0.12); transform: translateY(-3px); color: inherit; }

.tp-blog-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.tp-blog-card > div { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.tp-blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.tp-blog-card p  { font-size: 0.88rem; color: #5a6672; margin: 0; line-height: 1.55; }

.tp-blog-sidebar { position: sticky; top: 110px; }

@media (max-width: 991.98px) { .tp-blog-sidebar { position: static; } }

@media (max-width: 767.98px) {
    .tp-blog-main { padding: 2rem 0; }
    .tp-blog-grid { grid-template-columns: 1fr; gap: 1rem; }
    .tp-blog-hero { min-height: 140px; padding: 2rem 0; }
}

/* ============================================
   Privacy / Terms Pages
   ============================================ */

.tp-legal-page { padding: 3rem 0 4rem; }
.tp-legal-page h1 { margin-bottom: 1.5rem; }
.tp-legal-page h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.tp-legal-page p, .tp-legal-page li { color: #3a4a5a; line-height: 1.75; }

@media (max-width: 767.98px) {
    .tp-legal-page { padding: 2rem 0 3rem; }
}

/* ============================================
   Final global overflow hardening
   (catches anything that might still escape)
   ============================================ */

/* Every direct child of body clips internally */
body > * {
    max-width: 100vw;
    overflow-x: clip;
}

/* All images are responsive by default */
img { max-width: 100%; height: auto; display: block; }

/* Tables scroll horizontally instead of breaking layout */
table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Prevent pre/code from breaking layout */
pre, code {
    white-space: pre-wrap;
    word-break: break-word;
    max-width: 100%;
    overflow-x: auto;
}

/* Any element with inline style width wider than viewport */
@media (max-width: 767.98px) {
    [style*="width"] {
        max-width: 100% !important;
    }

    /* Fix any grid that escaped the previous rules */
    .row {
        --bs-gutter-x: 1rem;
    }

    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
