/**
 * Ntare Solutions - Custom Styles
 * Enhanced styling for mineral trading website
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --nt-primary: #063231;
    --nt-secondary: #F75709;
    --nt-accent: #C3DF94;
    --nt-dark: #294F4E;
    --nt-light: #F5F7F7;
    --nt-gray: #425657;
    --nt-border: #D7DEDE;
    --nt-white: #fff;
    --nt-gold: #D4AF37;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.ht-header-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.ht-top-header {
    background: var(--nt-primary);
    padding: 10px 0;
}

.ht-top-header .left p {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    margin: 0;
}

.ht-top-header .left p i {
    color: var(--nt-accent);
    margin-right: 8px;
}

.ht-top-header .right {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ht-top-header .right li {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.ht-top-header .right li i {
    color: var(--nt-accent);
    margin-right: 8px;
}

.ht-top-header .right li a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.ht-top-header .right li a:hover {
    color: var(--nt-accent);
}

.ht-main-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.ht-main-header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.ht-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ht-menu-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ht-menu-logo img {
    height: 55px;
    width: auto;
    transition: all 0.3s;
}

.ht-main-header.header-sticky .ht-menu-logo img {
    height: 45px;
}

.ht-menu-main ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ht-menu-main ul li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--nt-primary);
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.3s;
    position: relative;
}

.ht-menu-main ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nt-secondary);
    transition: width 0.3s;
}

.ht-menu-main ul li a:hover::after,
.ht-menu-main ul li.active a::after {
    width: 100%;
}

.ht-menu-main ul li a:hover,
.ht-menu-main ul li.active a {
    color: var(--nt-secondary);
}

/* Dropdown Menu */
.ht-menu-main ul li.dropdown {
    position: relative;
}

.ht-menu-main ul li.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--nt-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    flex-direction: column;
    gap: 0;
}

.ht-menu-main ul li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ht-menu-main ul li.dropdown > ul li {
    width: 100%;
}

.ht-menu-main ul li.dropdown > ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.ht-menu-main ul li.dropdown > ul li a::after {
    display: none;
}

.ht-menu-main ul li.dropdown > ul li a:hover {
    background: var(--nt-light);
}

/* Header CTA Button */
.ht-menu-right .ht-btn {
    background: var(--nt-secondary);
    color: var(--nt-white);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ht-menu-right .ht-btn:hover {
    background: var(--nt-primary);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.ht-menu-btn {
    background: var(--nt-secondary);
    color: var(--nt-white);
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.ht-menu-btn:hover {
    background: var(--nt-primary);
}

/* Offcanvas Mobile Menu */
.ht-offcanvas {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: var(--nt-white);
    z-index: 9999;
    padding: 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.ht-offcanvas.active {
    right: 0;
}

.ht-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ht-offcanvas-logo img {
    height: 50px;
    width: auto;
}

.ht-offcanvas-toggle-close {
    background: var(--nt-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--nt-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.ht-offcanvas-toggle-close:hover {
    background: var(--nt-secondary);
    color: var(--nt-white);
}

.ht-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.ht-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header Responsive */
@media (max-width: 991px) {
    .ht-top-header .row {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .ht-top-header .right {
        justify-content: center;
    }
    .ht-menu-logo img {
        height: 45px;
    }
}

@media (max-width: 575px) {
    .ht-top-header {
        display: none;
    }
    .ht-main-header {
        padding: 15px 0;
    }
}

/* ==========================================================================
   Hero Section - Two Column Layout
   ========================================================================== */
.ht-hero-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px !important;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ht-hero-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,50,49,0.95) 0%, rgba(41,79,78,0.90) 100%);
    z-index: 1;
}

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

.ht-hero-area .row {
    min-height: calc(100vh - 220px);
}

/* Hero Content - Left Column */
.ht-hero-content {
    text-align: left;
    padding-right: 40px;
}

.ht-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--nt-white);
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-align: left;
}

.text-gradient {
    background: linear-gradient(90deg, #7ee8fa 0%, var(--nt-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    max-width: 580px;
    margin: 0 0 28px 0;
    line-height: 1.8;
    text-align: left;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    justify-content: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: rgba(195,223,148,0.2);
    border: 1px solid rgba(195,223,148,0.4);
    border-radius: 30px;
}

.hero-badge i {
    font-size: 13px;
    color: var(--nt-accent);
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.ht-hero-area .ht-btn.style-2 {
    background: var(--nt-accent);
    color: var(--nt-dark);
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid var(--nt-accent);
}

.ht-hero-area .ht-btn.style-2:hover {
    background: var(--nt-white);
    color: var(--nt-primary);
    border-color: var(--nt-white);
    transform: translateY(-3px);
}

.ht-hero-area .ht-btn.style-3 {
    background: transparent;
    color: var(--nt-white);
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}

.ht-hero-area .ht-btn.style-3:hover {
    background: var(--nt-white);
    color: var(--nt-primary);
    border-color: var(--nt-white);
    transform: translateY(-3px);
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-item i {
    font-size: 20px;
    color: var(--nt-accent);
}

.trust-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.trust-item strong {
    color: var(--nt-white);
    font-weight: 700;
}

/* Hero Stat Cards - Right Column */
.hero-stats-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(-5px);
    border-color: rgba(195,223,148,0.4);
}

.hero-stat-card.highlight {
    background: rgba(195,223,148,0.2);
    border-color: rgba(195,223,148,0.4);
}

.hero-stat-card .stat-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    flex-shrink: 0;
}

.hero-stat-card .stat-icon i {
    font-size: 22px;
    color: var(--nt-accent);
}

.hero-stat-card .stat-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--nt-white);
    margin: 0;
    line-height: 1;
}

.hero-stat-card .stat-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 6px 0 0;
    font-weight: 500;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--nt-white);
    background: rgba(255,255,255,0.08);
    animation: bounce 2s infinite;
    transition: all 0.3s;
}

.hero-scroll-indicator a:hover {
    border-color: var(--nt-accent);
    color: var(--nt-accent);
    background: rgba(195,223,148,0.15);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Hero Responsive */
@media (max-width: 991px) {
    .ht-hero-area {
        padding: 140px 0 70px !important;
        min-height: auto;
    }
    .ht-hero-area .row { min-height: auto; }
    .ht-hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    .ht-hero-content h1 {
        font-size: 36px;
        text-align: center;
    }
    .hero-desc {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-badges { justify-content: center; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-stats-cards { max-width: 400px; margin: 0 auto; }
    .hero-stat-card:hover { transform: translateY(-3px); }
    .hero-scroll-indicator { display: none; }
}

@media (max-width: 768px) {
    .ht-hero-content h1 { font-size: 32px; }
    .ht-hero-area { padding: 130px 0 60px !important; }
    .hero-desc { font-size: 15px; }
}

@media (max-width: 480px) {
    .ht-hero-content h1 { font-size: 28px; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .ms-3 { margin-left: 0 !important; margin-top: 10px; }
    .ht-hero-area .ht-btn { width: 100%; justify-content: center; }
    .hero-badge { font-size: 10px; padding: 8px 14px; }
    .hero-stat-card { padding: 16px 18px; }
    .hero-stat-card .stat-content h3 { font-size: 24px; }
    .trust-item { padding: 10px 14px; }
    .trust-item span { font-size: 13px; }
}

/* ==========================================================================
   Section Titles
   ========================================================================== */
.section-title.text-center { text-align: center; }

.section-title .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 10px 22px;
    background: rgba(247,87,9,0.12);
    border-radius: 30px;
}

.section-title .title {
    font-size: 42px;
    font-weight: 800;
    color: var(--nt-primary);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: var(--nt-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.mb-60 { margin-bottom: 70px !important; }

@media (max-width: 768px) {
    .section-title .title { font-size: 30px; }
    .section-desc { font-size: 15px; }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.ht-services-area.pt-130 { padding-top: 110px; }
.ht-services-area.pb-130 { padding-bottom: 110px; }

.ht-services-thumbs {
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    min-height: 460px;
    position: relative;
}

.ht-services-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ht-services-thumbs .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(6,50,49,0.95) 0%, transparent 100%);
    text-align: center;
}

.ht-services-thumbs .content h3 {
    color: var(--nt-white);
    font-size: 20px;
    margin-bottom: 12px;
}

.ht-services-item .single-item {
    padding: 30px 25px;
    border: 2px solid var(--nt-border);
    border-bottom: none;
    transition: all 0.3s;
    background: var(--nt-white);
}

.ht-services-item .single-item:last-child {
    border-bottom: 2px solid var(--nt-border);
    border-radius: 0 0 14px 14px;
}

.ht-services-item .single-item:first-child {
    border-radius: 14px 14px 0 0;
}

.ht-services-item .single-item:hover {
    background: var(--nt-primary);
    border-color: var(--nt-primary);
}

.ht-services-item .single-item:hover h3,
.ht-services-item .single-item:hover p { color: var(--nt-white); }

.ht-services-item .single-item .service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin-bottom: 16px;
}

.ht-services-item .single-item:hover .service-icon {
    background: rgba(255,255,255,0.2);
}

.ht-services-item .single-item .service-icon i {
    font-size: 22px;
    color: var(--nt-primary);
}

.ht-services-item .single-item:hover .service-icon i { color: var(--nt-accent); }

.ht-services-item .single-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s;
    color: var(--nt-primary);
}

.ht-services-item .single-item p {
    font-size: 15px;
    color: var(--nt-gray);
    line-height: 1.7;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.ht-services-item .single-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--nt-light);
    border-radius: 50%;
    transition: all 0.3s;
}

.ht-services-item .single-item:hover a { background: rgba(255,255,255,0.15); }
.ht-services-item .single-item a i { color: var(--nt-primary); font-size: 14px; }
.ht-services-item .single-item:hover a i { color: var(--nt-accent); }

/* ==========================================================================
   Minerals Section
   ========================================================================== */
.ht-minerals-area {
    padding: 100px 0;
    background: var(--nt-light);
}

.ht-mineral-item {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 32px 22px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    margin-bottom: 30px;
}

.ht-mineral-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.ht-mineral-item .mineral-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: all 0.3s;
}

.ht-mineral-item:hover .mineral-icon { background: var(--nt-primary); }
.ht-mineral-item .mineral-icon i { font-size: 30px; color: var(--nt-primary); transition: color 0.3s; }
.ht-mineral-item:hover .mineral-icon i { color: var(--nt-white); }
.ht-mineral-item .mineral-icon.gold i { color: var(--nt-gold); }
.ht-mineral-item:hover .mineral-icon.gold { background: var(--nt-gold); }
.ht-mineral-item:hover .mineral-icon.gold i { color: var(--nt-white); }

.ht-mineral-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--nt-primary);
    margin-bottom: 5px;
}

.ht-mineral-item .mineral-name {
    font-size: 13px;
    color: var(--nt-secondary);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ht-mineral-item > p {
    font-size: 14px;
    color: var(--nt-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mineral-specs { list-style: none; padding: 0; margin: 0; text-align: left; }
.mineral-specs li {
    padding: 12px 0;
    border-top: 1px solid var(--nt-border);
    font-size: 13px;
    color: var(--nt-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
}
.mineral-specs li i { color: var(--nt-accent); margin-right: 10px; font-size: 14px; }

/* ==========================================================================
   Stats Section - Track Record (Revamped)
   ========================================================================== */
.ht-stats-area {
    padding: 100px 0;
    background: var(--nt-light);
    position: relative;
}

.stats-header {
    margin-bottom: 60px;
}

.stats-header .subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stats-header .title {
    font-size: 38px;
    font-weight: 800;
    color: var(--nt-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.stats-header .section-desc {
    font-size: 16px;
    color: var(--nt-gray);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.stat-card {
    background: var(--nt-white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--nt-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nt-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6,50,49,0.12);
    border-color: transparent;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card.featured {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-dark) 100%);
    border-color: transparent;
}

.stat-card.featured::before {
    background: var(--nt-accent);
    transform: scaleX(1);
}

.stat-card.featured .stat-icon-wrap {
    background: rgba(195,223,148,0.2);
}

.stat-card.featured .stat-icon-wrap i {
    color: var(--nt-accent);
}

.stat-card.featured .stat-number,
.stat-card.featured .stat-title {
    color: var(--nt-white);
}

.stat-card.featured .stat-text {
    color: rgba(255,255,255,0.8);
}

.stat-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    transition: all 0.3s;
}

.stat-card:hover .stat-icon-wrap {
    transform: scale(1.1);
}

.stat-icon-wrap i {
    font-size: 28px;
    color: var(--nt-primary);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--nt-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .suffix {
    font-size: 32px;
    color: var(--nt-secondary);
}

.stat-card.featured .stat-number .suffix {
    color: var(--nt-accent);
}

.stat-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--nt-primary);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 13px;
    color: var(--nt-gray);
    line-height: 1.5;
    margin: 0;
}

/* Stats Bottom */
.stats-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--nt-border);
}

.stats-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nt-primary);
}

.badge-item i {
    font-size: 18px;
    color: var(--nt-secondary);
}

.stats-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--nt-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.stats-cta-link:hover {
    color: var(--nt-primary);
    gap: 12px;
}

.stats-cta-link i {
    transition: transform 0.3s;
}

.stats-cta-link:hover i {
    transform: translateX(3px);
}

/* Stats Responsive */
@media (max-width: 1199px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .stats-header .title { font-size: 32px; }
    .stat-number { font-size: 42px; }
    .stats-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .stats-badges { justify-content: center; }
}

@media (max-width: 575px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 30px 20px; }
    .stat-number { font-size: 38px; }
    .stats-badges { flex-direction: column; gap: 15px; }
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.ht-choose-area { padding: 100px 0; }
.ht-choose-area.bg-light { background: var(--nt-light); }

.ht-choose-content .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ht-choose-content .title {
    font-size: 38px;
    font-weight: 800;
    color: var(--nt-primary);
    line-height: 1.2;
    margin-bottom: 18px;
}

.ht-choose-content > p { font-size: 16px; color: var(--nt-gray); line-height: 1.8; margin-bottom: 25px; }

.ht-choose-list .single-choose {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--nt-border);
}

.ht-choose-list .single-choose:last-child { border-bottom: none; }

.ht-choose-list .single-choose .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s;
}

.ht-choose-list .single-choose:hover .icon { background: var(--nt-secondary); transform: scale(1.05); }
.ht-choose-list .single-choose .icon i { font-size: 18px; color: var(--nt-white); }
.ht-choose-list .single-choose .content h4 { font-size: 16px; font-weight: 600; color: var(--nt-primary); margin-bottom: 5px; }
.ht-choose-list .single-choose .content p { font-size: 13px; color: var(--nt-gray); line-height: 1.55; margin: 0; }

.ht-choose-img { border-radius: 14px; overflow: hidden; box-shadow: 0 18px 45px rgba(0,0,0,0.12); }
.ht-choose-img img { width: 100%; height: auto; }

@media (max-width: 768px) { .ht-choose-content .title { font-size: 26px; } }

/* ==========================================================================
   CTA Section
   ========================================================================== */
.ht-cta-area {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,50,49,0.95) 0%, rgba(41,79,78,0.9) 100%);
}

.ht-cta-wrapper { position: relative; z-index: 1; }
.ht-cta-wrapper h2 { font-size: 40px; font-weight: 700; color: var(--nt-white); margin-bottom: 16px; }
.ht-cta-wrapper p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; line-height: 1.65; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.ht-btn.style-outline {
    background: transparent;
    border: 2px solid var(--nt-white);
    color: var(--nt-white);
    padding: 13px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.ht-btn.style-outline:hover { background: var(--nt-white); color: var(--nt-primary); }
.ht-btn.style-outline i { margin-right: 8px; }

@media (max-width: 768px) { .ht-cta-wrapper h2 { font-size: 28px; } }

/* ==========================================================================
   About Page
   ========================================================================== */
.ht-about-area { padding: 100px 0; }
.ht-about-img { position: relative; }
.ht-about-img img { border-radius: 14px; width: 100%; }

.about-experience {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--nt-secondary);
    color: var(--nt-white);
    padding: 25px 28px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(247,87,9,0.35);
}

.about-experience h3 { font-size: 44px; font-weight: 700; margin-bottom: 2px; line-height: 1; }
.about-experience p { font-size: 12px; margin: 0; line-height: 1.3; opacity: 0.9; }

@media (max-width: 768px) {
    .about-experience { bottom: -15px; right: 12px; padding: 18px 22px; }
    .about-experience h3 { font-size: 36px; }
}

.about-highlights { margin-top: 22px; }
.about-highlights .highlight-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.about-highlights .highlight-item i { color: var(--nt-accent); font-size: 16px; }
.about-highlights .highlight-item span { font-weight: 500; font-size: 13px; color: var(--nt-primary); }

/* MVP Section */
.ht-mvp-area { padding: 100px 0; }
.ht-mvp-area.bg-light { background: var(--nt-light); }

.ht-mvp-item {
    background: var(--nt-white);
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
}

.ht-mvp-item:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.ht-mvp-item .mvp-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: all 0.3s;
}

.ht-mvp-item:hover .mvp-icon { background: var(--nt-primary); }
.ht-mvp-item .mvp-icon i { font-size: 28px; color: var(--nt-primary); transition: color 0.3s; }
.ht-mvp-item:hover .mvp-icon i { color: var(--nt-white); }
.ht-mvp-item h3 { font-size: 20px; font-weight: 600; color: var(--nt-primary); margin-bottom: 10px; }
.ht-mvp-item p { font-size: 14px; color: var(--nt-gray); line-height: 1.65; margin: 0; }

/* Story Section */
.ht-story-area { padding: 100px 0; }
.ht-story-img { border-radius: 14px; overflow: hidden; box-shadow: 0 18px 45px rgba(0,0,0,0.12); }
.ht-story-img img { width: 100%; height: auto; }
.ht-story-content { padding-left: 35px; }

@media (max-width: 991px) { .ht-story-content { padding-left: 0; margin-top: 35px; } }

.ht-story-content .subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ht-story-content .title { font-size: 32px; font-weight: 700; color: var(--nt-primary); line-height: 1.2; margin-bottom: 15px; }
.ht-story-content p { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 15px; }

.story-stats { display: flex; gap: 35px; margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--nt-border); }
.story-stats .stat-item { text-align: center; }
.story-stats .stat-item h4 { font-size: 24px; font-weight: 700; color: var(--nt-primary); margin-bottom: 3px; }
.story-stats .stat-item p { font-size: 12px; color: var(--nt-gray); margin: 0; }

@media (max-width: 768px) { .ht-story-content .title { font-size: 24px; } }
@media (max-width: 480px) { .story-stats { flex-wrap: wrap; gap: 22px; } }

/* ==========================================================================
   Contact Page
   ========================================================================== */
.ht-contact-info-area { padding: 100px 0; }

.contact-info-item {
    background: var(--nt-white);
    padding: 32px 22px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    border: 1px solid var(--nt-border);
}

.contact-info-item:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: var(--nt-primary); }

.contact-info-item .icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: all 0.3s;
}

.contact-info-item:hover .icon { background: var(--nt-primary); }
.contact-info-item .icon i { font-size: 26px; color: var(--nt-primary); transition: color 0.3s; }
.contact-info-item:hover .icon i { color: var(--nt-white); }
.contact-info-item .content span { font-size: 12px; color: var(--nt-gray); display: block; margin-bottom: 8px; }
.contact-info-item .content h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.contact-info-item .content h4 a { color: var(--nt-primary); transition: color 0.3s; }
.contact-info-item .content h4 a:hover { color: var(--nt-secondary); }
.contact-info-item .content .contact-note { font-size: 12px; color: var(--nt-gray); margin: 0; }

/* Contact Form */
.ht-contact-form-area { padding: 100px 0; }
.ht-contact-form-area.bg-light { background: var(--nt-light); }
.contact-form-content { padding-right: 35px; }

@media (max-width: 991px) { .contact-form-content { padding-right: 0; margin-bottom: 35px; } }

.contact-form-content .subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-form-content .title { font-size: 32px; font-weight: 700; color: var(--nt-primary); line-height: 1.2; margin-bottom: 15px; }
.contact-form-content > p { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 25px; }

@media (max-width: 768px) { .contact-form-content .title { font-size: 24px; } }

.contact-highlights .highlight-item { display: flex; gap: 16px; margin-bottom: 20px; }

.contact-highlights .highlight-item > i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-white);
    border-radius: 50%;
    font-size: 18px;
    color: var(--nt-primary);
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.contact-highlights .highlight-item h5 { font-size: 15px; font-weight: 600; color: var(--nt-primary); margin-bottom: 4px; }
.contact-highlights .highlight-item p { font-size: 13px; color: var(--nt-gray); margin: 0; line-height: 1.45; }

.contact-form-wrapper { background: var(--nt-white); padding: 35px; border-radius: 14px; box-shadow: 0 8px 35px rgba(0,0,0,0.08); }

@media (max-width: 480px) { .contact-form-wrapper { padding: 25px 20px; } }

.ht-contact-form .form-group { margin-bottom: 18px; }
.ht-contact-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 8px; color: var(--nt-primary); }
.ht-contact-form label span { color: var(--nt-secondary); }

.ht-contact-form input,
.ht-contact-form textarea,
.ht-contact-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--nt-border);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--nt-white);
}

.ht-contact-form input:focus,
.ht-contact-form textarea:focus,
.ht-contact-form select:focus {
    outline: none;
    border-color: var(--nt-primary);
    box-shadow: 0 0 0 3px rgba(6,50,49,0.08);
}

.ht-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23063231' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

.ht-contact-form textarea { resize: vertical; min-height: 120px; }
.ht-contact-form button[type="submit"] i { margin-right: 8px; }

/* Map */
.ht-map-area .map-wrapper iframe { display: block; width: 100%; filter: grayscale(15%); }

/* ==========================================================================
   Footer
   ========================================================================== */
.ht-footer-area { background: var(--nt-primary); padding-top: 65px; }
.ht-footer-wrapper { padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-widget { margin-bottom: 22px; }
.footer-widget .footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-widget .desc { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }

.footer-certifications { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-certifications span { font-size: 12px; color: var(--nt-accent); font-weight: 500; }
.footer-certifications span i { margin-right: 5px; }

.footer-widget .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--nt-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 2px;
    background: var(--nt-secondary);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.3s; }
.footer-links li a i { margin-right: 8px; font-size: 12px; color: var(--nt-accent); }
.footer-links li a:hover { color: var(--nt-white); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact li i { color: var(--nt-accent); margin-top: 3px; font-size: 14px; }
.footer-contact li span, .footer-contact li a { color: rgba(255,255,255,0.7); display: block; line-height: 1.5; font-size: 14px; }
.footer-contact li a:hover { color: var(--nt-white); }

.ht-footer-bottom { padding: 20px 0; }
.footer-copyright p { color: rgba(255,255,255,0.7); margin: 0; font-size: 13px; }
.footer-copyright p strong { color: var(--nt-white); }

.footer-bottom-links ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: flex-end; gap: 22px; }
.footer-bottom-links ul li a { color: rgba(255,255,255,0.7); font-size: 13px; transition: color 0.3s; }
.footer-bottom-links ul li a:hover { color: var(--nt-white); }

@media (max-width: 768px) { .footer-bottom-links ul { justify-content: flex-start; margin-top: 12px; } }

/* ==========================================================================
   Error Page
   ========================================================================== */
.ht-error-page-area .error-content h3 { font-size: 30px; font-weight: 700; color: var(--nt-primary); margin: 22px 0 10px; }
.ht-error-page-area .error-content p { font-size: 15px; color: var(--nt-gray); margin-bottom: 22px; }
.error-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   Services Page Cards
   ========================================================================== */
.ht-services-intro { padding: 65px 0 0; }

.ht-services-card {
    background: var(--nt-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    height: 100%;
    border: 1px solid var(--nt-border);
}

.ht-services-card:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: var(--nt-primary); }
.ht-services-card .services-thumb { height: 190px; overflow: hidden; }
.ht-services-card .services-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ht-services-card:hover .services-thumb img { transform: scale(1.06); }
.ht-services-card .services-content { padding: 28px 22px; }

.ht-services-card .services-content .services-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.ht-services-card:hover .services-content .services-icon { background: var(--nt-primary); }
.ht-services-card .services-content .services-icon i { font-size: 22px; color: var(--nt-primary); transition: color 0.3s; }
.ht-services-card:hover .services-content .services-icon i { color: var(--nt-white); }
.ht-services-card .services-content .title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.ht-services-card .services-content .title a { color: var(--nt-primary); transition: color 0.3s; }
.ht-services-card .services-content .title a:hover { color: var(--nt-secondary); }
.ht-services-card .services-content .desc { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 16px; }
.ht-services-card .services-content .read-more { font-weight: 600; font-size: 13px; color: var(--nt-primary); transition: all 0.3s; }
.ht-services-card .services-content .read-more i { margin-left: 5px; transition: transform 0.3s; }
.ht-services-card .services-content .read-more:hover { color: var(--nt-secondary); }
.ht-services-card .services-content .read-more:hover i { transform: translateX(4px); }

/* ==========================================================================
   Single Post & Sidebar
   ========================================================================== */
.ht-blog-details-wrapper .blog-single-post .post-thumb { border-radius: 14px; overflow: hidden; margin-bottom: 22px; }
.ht-blog-details-wrapper .blog-single-post .post-thumb img { width: 100%; height: auto; }
.post-meta { display: flex; gap: 18px; margin-bottom: 16px; }
.post-meta span { font-size: 13px; color: var(--nt-gray); }
.post-meta span i { margin-right: 6px; color: var(--nt-primary); }
.post-title { font-size: 28px; font-weight: 700; color: var(--nt-primary); line-height: 1.3; margin-bottom: 20px; }
.post-body { color: var(--nt-gray); line-height: 1.75; font-size: 15px; }
.post-body p { margin-bottom: 16px; }

.post-tags { padding-top: 20px; border-top: 1px solid var(--nt-border); margin-top: 28px; }
.post-tags strong { margin-right: 10px; color: var(--nt-primary); }
.post-tags a { display: inline-block; padding: 5px 12px; background: var(--nt-light); border-radius: 18px; font-size: 12px; color: var(--nt-primary); margin: 4px; transition: all 0.3s; }
.post-tags a:hover { background: var(--nt-primary); color: var(--nt-white); }

.post-navigation { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--nt-border); }
.post-navigation a { color: var(--nt-primary); font-weight: 600; font-size: 14px; transition: color 0.3s; }
.post-navigation a:hover { color: var(--nt-secondary); }

@media (max-width: 768px) { .post-title { font-size: 22px; } }

/* Sidebar */
.ht-sidebar-area .single-widget { background: var(--nt-white); padding: 28px 22px; border-radius: 14px; margin-bottom: 22px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid var(--nt-border); }
.ht-sidebar-area .widget-title { font-size: 17px; font-weight: 600; color: var(--nt-primary); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--nt-border); }

.services-list .service-link { display: block; padding: 11px 0; color: var(--nt-primary); font-weight: 500; font-size: 14px; border-bottom: 1px solid var(--nt-border); transition: all 0.3s; }
.services-list .service-link:last-child { border-bottom: none; }
.services-list .service-link i { margin-right: 8px; color: var(--nt-secondary); font-size: 12px; transition: transform 0.3s; }
.services-list .service-link:hover { color: var(--nt-secondary); padding-left: 5px; }

.ht-sidebar-area .contact-widget { background: var(--nt-primary); border-color: var(--nt-primary); }
.ht-sidebar-area .contact-widget .widget-title { color: var(--nt-white); border-bottom-color: rgba(255,255,255,0.2); }
.ht-sidebar-area .contact-widget p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }

.widget-phone { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.widget-phone i { color: var(--nt-accent); font-size: 16px; }
.widget-phone a { color: var(--nt-white); font-size: 16px; font-weight: 600; }

/* ==========================================================================
   Page Content & Process
   ========================================================================== */
.ht-page-content { padding: 65px 0; }
.page-content-wrapper { line-height: 1.75; color: var(--nt-gray); font-size: 15px; }

.ht-process-area.inner-two { background: var(--nt-light); }

.ht-process-item.two {
    background: var(--nt-white);
    padding: 32px 22px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
}

.ht-process-item.two:hover { transform: translateY(-8px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.ht-process-item.two .step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--nt-primary);
    color: var(--nt-white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 18px;
}

.ht-process-item.two .title { font-size: 17px; font-weight: 600; color: var(--nt-primary); margin-bottom: 10px; }
.ht-process-item.two p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin: 0; }

/* Enhanced Hero - Consolidated into main Hero Section above */

/* ==========================================================================
   Certifications Section
   ========================================================================== */
.ht-certifications-area { background: var(--nt-white); }

.certification-item {
    background: var(--nt-light);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.35s;
    position: relative;
    margin-bottom: 30px;
}

.certification-item:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); background: var(--nt-white); }

.certification-item .cert-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: all 0.3s;
}
.certification-item:hover .cert-logo { background: var(--nt-secondary); transform: scale(1.05); }
.certification-item .cert-logo i { font-size: 28px; color: var(--nt-white); }

.certification-item h4 { font-size: 18px; font-weight: 600; color: var(--nt-primary); margin-bottom: 10px; }
.certification-item p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 16px; }

.certification-item .cert-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--nt-white);
    background: var(--nt-accent);
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-dark) 100%);
}

.certification-cta { margin-top: 30px; }
.certification-cta p { font-size: 14px; color: var(--nt-gray); }
.certification-cta a { color: var(--nt-secondary); font-weight: 600; transition: all 0.3s; }
.certification-cta a:hover { color: var(--nt-primary); }
.certification-cta a i { margin-left: 5px; transition: transform 0.3s; }
.certification-cta a:hover i { transform: translateX(4px); }

/* ==========================================================================
   Process Section
   ========================================================================== */
.ht-process-area { position: relative; }

.process-card {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    position: relative;
    margin-bottom: 30px;
}

.process-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

.process-card .process-number {
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(6,50,49,0.06);
    line-height: 1;
}

.process-card .process-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin: 0 auto 18px;
    transition: all 0.3s;
}

.process-card:hover .process-icon { background: var(--nt-primary); }
.process-card .process-icon i { font-size: 26px; color: var(--nt-primary); transition: color 0.3s; }
.process-card:hover .process-icon i { color: var(--nt-white); }

.process-card h4 { font-size: 18px; font-weight: 600; color: var(--nt-primary); margin-bottom: 12px; }
.process-card > p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 18px; }

.process-features { list-style: none; padding: 0; margin: 0; text-align: left; }
.process-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--nt-primary);
    font-weight: 500;
    padding: 6px 0;
}
.process-features li i { font-size: 10px; color: var(--nt-accent); }

.process-connector { display: none; }

/* ==========================================================================
   Partners Section
   ========================================================================== */
.ht-partners-area { background: var(--nt-light); }

.partners-stats { margin-bottom: 50px; }
.partner-stat-item {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    margin-bottom: 30px;
}

.partner-stat-item:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.partner-stat-item .stat-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin: 0 auto 14px;
    transition: all 0.3s;
}

.partner-stat-item:hover .stat-icon { background: var(--nt-primary); }
.partner-stat-item .stat-icon i { font-size: 22px; color: var(--nt-primary); transition: color 0.3s; }
.partner-stat-item:hover .stat-icon i { color: var(--nt-white); }
.partner-stat-item h3 { font-size: 36px; font-weight: 700; color: var(--nt-primary); margin-bottom: 4px; line-height: 1; }
.partner-stat-item p { font-size: 13px; color: var(--nt-gray); margin: 0; }

.partners-regions { background: var(--nt-white); border-radius: 14px; padding: 30px; text-align: center; }
.partners-regions h5 { font-size: 14px; font-weight: 600; color: var(--nt-primary); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }

.region-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.region-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--nt-primary);
    font-weight: 500;
    padding: 8px 16px;
    background: var(--nt-light);
    border-radius: 25px;
    transition: all 0.3s;
}
.region-tag i { font-size: 10px; color: var(--nt-secondary); }
.region-tag:hover { background: var(--nt-primary); color: var(--nt-white); }
.region-tag:hover i { color: var(--nt-accent); }

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.ht-testimonials-area {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,50,49,0.95) 0%, rgba(41,79,78,0.92) 100%);
}

.ht-testimonials-area .container { position: relative; z-index: 1; }
.ht-testimonials-area .subtitle.light { background: rgba(195,223,148,0.15) !important; color: var(--nt-accent) !important; }
.ht-testimonials-area .title.light { color: var(--nt-white) !important; }

.testimonial-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 32px 26px;
    height: 100%;
    transition: all 0.35s;
    margin-bottom: 30px;
}

.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }

.testimonial-rating { margin-bottom: 16px; }
.testimonial-rating i { font-size: 14px; color: var(--nt-gold); margin-right: 2px; }

.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; font-style: italic; margin-bottom: 22px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195,223,148,0.2);
    border-radius: 50%;
}
.testimonial-author .author-avatar i { font-size: 18px; color: var(--nt-accent); }
.testimonial-author .author-info h5 { font-size: 15px; font-weight: 600; color: var(--nt-white); margin-bottom: 2px; }
.testimonial-author .author-info span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Team Section
   ========================================================================== */
.ht-team-area { background: var(--nt-white); }

.team-card {
    background: var(--nt-light);
    border-radius: 14px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.35s;
    margin-bottom: 30px;
}

.team-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); background: var(--nt-white); }

.team-card .team-avatar {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.team-card:hover .team-avatar { background: var(--nt-secondary); transform: scale(1.05); }
.team-card .team-avatar i { font-size: 36px; color: var(--nt-white); }

.team-card .team-info h4 { font-size: 20px; font-weight: 600; color: var(--nt-primary); margin-bottom: 4px; }
.team-card .team-info .team-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.team-card .team-info > p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 16px; }

.team-expertise { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.team-expertise span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--nt-primary);
    font-weight: 500;
    padding: 5px 12px;
    background: var(--nt-white);
    border-radius: 20px;
}
.team-card:hover .team-expertise span { background: var(--nt-light); }
.team-expertise span i { font-size: 9px; color: var(--nt-accent); }

/* ==========================================================================
   Why Work With Us Section
   ========================================================================== */
.ht-why-work-area { overflow: hidden; }

.why-work-content .subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.why-work-content .title { font-size: 34px; font-weight: 700; color: var(--nt-primary); line-height: 1.2; margin-bottom: 15px; }
.why-work-content > p { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 28px; }

.why-work-features { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-white);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.feature-item:hover .feature-icon { background: var(--nt-primary); }
.feature-item .feature-icon i { font-size: 20px; color: var(--nt-primary); transition: color 0.3s; }
.feature-item:hover .feature-icon i { color: var(--nt-white); }
.feature-item .feature-content h5 { font-size: 16px; font-weight: 600; color: var(--nt-primary); margin-bottom: 4px; }
.feature-item .feature-content p { font-size: 13px; color: var(--nt-gray); line-height: 1.5; margin: 0; }

.why-work-stats { padding-left: 30px; }

@media (max-width: 991px) {
    .why-work-stats { padding-left: 0; margin-top: 40px; }
    .why-work-content .title { font-size: 28px; }
}

.stat-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item-large {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
}

.stat-item-large:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.stat-item-large h3 { font-size: 36px; font-weight: 700; color: var(--nt-primary); margin-bottom: 4px; line-height: 1; }
.stat-item-large p { font-size: 13px; color: var(--nt-gray); margin: 0; }

@media (max-width: 480px) {
    .stat-box { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.ht-newsletter-area {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-dark) 100%);
    padding: 60px 0;
}

.newsletter-wrapper { position: relative; }

.newsletter-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--nt-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-content h3 i { color: var(--nt-accent); font-size: 28px; }
.newsletter-content p { font-size: 14px; color: rgba(255,255,255,0.8); margin: 0; }

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: var(--nt-white);
    color: var(--nt-primary);
}

.newsletter-form input::placeholder { color: var(--nt-gray); }
.newsletter-form input:focus { outline: none; }

.newsletter-form button {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button i { font-size: 14px; }

.newsletter-form .form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.newsletter-form .form-note i { font-size: 10px; }

@media (max-width: 991px) {
    .newsletter-content { margin-bottom: 25px; text-align: center; }
    .newsletter-content h3 { justify-content: center; }
}

@media (max-width: 576px) {
    .newsletter-form .form-group { flex-direction: column; }
    .newsletter-form button { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Footer Social Links
   ========================================================================== */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--nt-white);
    transition: all 0.3s;
}

.footer-social a:hover { background: var(--nt-secondary); transform: translateY(-3px); }
.footer-social a i { font-size: 14px; }

/* ==========================================================================
   Breadcrumb Area
   ========================================================================== */
.ht-breadcrumb-area {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-dark) 100%);
    padding: 140px 0 60px;
    position: relative;
}

.ht-breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.ht-breadcrumb-heading { position: relative; z-index: 1; text-align: center; }
.ht-breadcrumb-title { font-size: 42px; font-weight: 700; color: var(--nt-white); margin-bottom: 15px; }

.ht-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.ht-breadcrumb-list li { font-size: 14px; color: rgba(255,255,255,0.7); }
.ht-breadcrumb-list li a { color: var(--nt-accent); transition: color 0.3s; }
.ht-breadcrumb-list li a:hover { color: var(--nt-white); }
.ht-breadcrumb-list li i { font-size: 10px; }
.ht-breadcrumb-list li.active { color: var(--nt-white); }

@media (max-width: 768px) {
    .ht-breadcrumb-area { padding: 120px 0 50px; }
    .ht-breadcrumb-title { font-size: 32px; }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.ht-faq-area { background: var(--nt-white); }

.faq-content .subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.faq-content .title { font-size: 34px; font-weight: 700; color: var(--nt-primary); line-height: 1.2; margin-bottom: 15px; }
.faq-content > p { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 30px; }

.faq-contact-box {
    background: var(--nt-light);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.faq-contact-box .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-contact-box .icon i { font-size: 24px; color: var(--nt-white); }
.faq-contact-box .content p { font-size: 13px; color: var(--nt-gray); margin-bottom: 5px; }
.faq-contact-box .content h4 { font-size: 18px; font-weight: 600; color: var(--nt-primary); margin-bottom: 12px; }

.faq-accordion .accordion-item {
    border: 1px solid var(--nt-border);
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--nt-primary);
    padding: 20px 24px;
    background: var(--nt-white);
    box-shadow: none;
    gap: 12px;
}

.faq-accordion .accordion-button:not(.collapsed) { background: var(--nt-light); color: var(--nt-primary); }
.faq-accordion .accordion-button::after { display: none; }
.faq-accordion .accordion-button i { color: var(--nt-secondary); font-size: 18px; }
.faq-accordion .accordion-body { padding: 0 24px 20px; font-size: 14px; color: var(--nt-gray); line-height: 1.7; }

@media (max-width: 991px) {
    .faq-content { margin-bottom: 40px; }
    .faq-content .title { font-size: 28px; }
}

/* ==========================================================================
   Documents Section
   ========================================================================== */
.document-card {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    margin-bottom: 30px;
}

.document-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.document-card .doc-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.document-card:hover .doc-icon { background: var(--nt-primary); }
.document-card .doc-icon i { font-size: 22px; color: var(--nt-primary); transition: color 0.3s; }
.document-card:hover .doc-icon i { color: var(--nt-white); }

.document-card .doc-content .doc-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.document-card .doc-content h4 { font-size: 16px; font-weight: 600; color: var(--nt-primary); margin-bottom: 8px; }
.document-card .doc-content p { font-size: 13px; color: var(--nt-gray); line-height: 1.5; margin-bottom: 12px; }

.document-card .doc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nt-primary);
    transition: all 0.3s;
}

.document-card .doc-link:hover { color: var(--nt-secondary); }
.document-card .doc-link i { transition: transform 0.3s; }
.document-card .doc-link:hover i { transform: translateX(4px); }

.documents-note { margin-top: 20px; }
.documents-note p { font-size: 13px; color: var(--nt-gray); display: flex; align-items: center; justify-content: center; gap: 8px; }
.documents-note p i { color: var(--nt-secondary); }

/* ==========================================================================
   Location Advantage Section
   ========================================================================== */
.location-content .subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.location-content .title { font-size: 34px; font-weight: 700; color: var(--nt-primary); line-height: 1.2; margin-bottom: 15px; }
.location-content > p { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 28px; }

.location-features { display: flex; flex-direction: column; gap: 20px; }
.location-feature { display: flex; gap: 16px; }

.location-feature .feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.location-feature:hover .feature-icon { background: var(--nt-primary); }
.location-feature .feature-icon i { font-size: 20px; color: var(--nt-primary); transition: color 0.3s; }
.location-feature:hover .feature-icon i { color: var(--nt-white); }
.location-feature .feature-content h5 { font-size: 16px; font-weight: 600; color: var(--nt-primary); margin-bottom: 4px; }
.location-feature .feature-content p { font-size: 13px; color: var(--nt-gray); line-height: 1.5; margin: 0; }

.location-map-wrapper { padding-left: 30px; }

@media (max-width: 991px) {
    .location-map-wrapper { padding-left: 0; margin-top: 40px; }
    .location-content .title { font-size: 28px; }
}

.location-map-card {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-dark) 100%);
    border-radius: 14px;
    overflow: hidden;
    padding: 30px;
}

.location-map-card .map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.location-map-card .map-header i { font-size: 20px; color: var(--nt-secondary); }
.location-map-card .map-header span { font-size: 18px; font-weight: 600; color: var(--nt-white); }

.location-map-card .map-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.location-map-card .map-stat {
    background: rgba(255,255,255,0.08);
    padding: 16px;
    border-radius: 10px;
    text-align: center;
}

.location-map-card .map-stat .stat-value { font-size: 16px; font-weight: 700; color: var(--nt-accent); margin-bottom: 4px; }
.location-map-card .map-stat .stat-label { font-size: 11px; color: rgba(255,255,255,0.7); }

.location-map-card .map-info { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.location-map-card .map-info h5 { font-size: 14px; font-weight: 600; color: var(--nt-white); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.location-map-card .map-info h5 i { color: var(--nt-secondary); }
.location-map-card .map-info p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 15px; line-height: 1.5; }

.location-map-card .map-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.location-map-card .map-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--nt-white);
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
}
.location-map-card .map-badges span i { color: var(--nt-accent); }

/* ==========================================================================
   Enhanced CTA Section
   ========================================================================== */
.ht-cta-content { padding-right: 30px; }

@media (max-width: 991px) { .ht-cta-content { padding-right: 0; margin-bottom: 30px; text-align: center; } }

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--nt-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-badge i { font-size: 14px; }

.ht-cta-content h2 { font-size: 36px; font-weight: 700; color: var(--nt-white); margin-bottom: 15px; line-height: 1.2; }
.ht-cta-content p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 25px; }

.cta-features { display: flex; flex-wrap: wrap; gap: 20px; }

@media (max-width: 991px) { .cta-features { justify-content: center; } }

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.cta-feature i { color: var(--nt-accent); font-size: 14px; }

.cta-action-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
}

.cta-action-box h4 { font-size: 20px; font-weight: 600; color: var(--nt-white); margin-bottom: 8px; }
.cta-action-box > p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }

.cta-btns-vertical { display: flex; flex-direction: column; gap: 12px; }
.cta-btns-vertical .ht-btn { justify-content: center; }

@media (max-width: 768px) { .ht-cta-content h2 { font-size: 28px; } }

/* ==========================================================================
   Services Page Detail
   ========================================================================== */
.ht-services-detail { padding: 100px 0 50px; }

.service-detail-row { margin-bottom: 80px; }
.service-detail-row:last-child { margin-bottom: 0; }

.service-detail-content .service-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(6,50,49,0.08);
    line-height: 1;
    margin-bottom: 10px;
}

.service-detail-content h3 { font-size: 28px; font-weight: 700; color: var(--nt-primary); margin-bottom: 15px; }
.service-detail-content > p { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 25px; }

.service-features-list { list-style: none; padding: 0; margin: 0 0 25px; }
.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--nt-primary);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--nt-border);
}
.service-features-list li:last-child { border-bottom: none; }
.service-features-list li i { color: var(--nt-accent); margin-top: 3px; }

.service-minerals span, .service-destinations span {
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.mineral-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mineral-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--nt-primary);
    padding: 6px 14px;
    background: var(--nt-light);
    border-radius: 20px;
}
.mineral-tag.gold { background: rgba(212,175,55,0.15); color: var(--nt-gold); }

.service-destinations p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin: 0; }

.service-stats { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--nt-border); }
.service-stats .stat { text-align: center; }
.service-stats .stat strong { display: block; font-size: 22px; font-weight: 700; color: var(--nt-primary); }
.service-stats .stat span { font-size: 11px; color: var(--nt-gray); }

.service-certifications { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.service-certifications .cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nt-primary);
    padding: 8px 14px;
    background: var(--nt-light);
    border-radius: 20px;
}
.service-certifications .cert-badge i { color: var(--nt-accent); }

.service-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    background: var(--nt-light);
    border-radius: 14px;
}

.service-detail-icon i { font-size: 120px; color: rgba(6,50,49,0.1); }
.service-detail-icon.alt { background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-dark) 100%); }
.service-detail-icon.alt i { color: rgba(255,255,255,0.15); }

@media (max-width: 991px) {
    .service-detail-content h3 { font-size: 24px; }
    .service-detail-icon { min-height: 200px; margin-top: 30px; }
    .service-detail-row.reverse .service-detail-icon { margin-top: 0; margin-bottom: 30px; }
}

/* ==========================================================================
   Contact Page Enhancements
   ========================================================================== */
.contact-info-item.whatsapp .icon { background: #25D366; }
.contact-info-item.whatsapp:hover .icon { background: #128C7E; }
.contact-info-item.whatsapp .icon i { color: var(--nt-white); }

.contact-quick-actions { margin-top: 60px; }

.quick-actions-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--nt-light);
    border-radius: 14px;
    padding: 30px;
}

@media (max-width: 991px) { .quick-actions-wrapper { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .quick-actions-wrapper { grid-template-columns: 1fr; } }

.quick-action-item { text-align: center; padding: 20px; }
.quick-action-item i { font-size: 32px; color: var(--nt-primary); margin-bottom: 12px; display: block; }
.quick-action-item h5 { font-size: 15px; font-weight: 600; color: var(--nt-primary); margin-bottom: 5px; }
.quick-action-item p { font-size: 12px; color: var(--nt-gray); margin: 0; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.section-padding { padding: 100px 0; }
.pt-130 { padding-top: 110px; }
.pb-130 { padding-bottom: 110px; }
.bg-light { background: var(--nt-light) !important; }
.w-100 { width: 100% !important; }
.fix { overflow: hidden; }

@media (max-width: 480px) { .ms-3 { margin-left: 0 !important; } }

/* Smooth Scroll */
html { scroll-behavior: smooth; }

/* Selection Color */
::selection { background: var(--nt-primary); color: var(--nt-white); }

/* Focus States */
a:focus, button:focus { outline: 2px solid var(--nt-accent); outline-offset: 2px; }

/* Loading Animation for Buttons */
.ht-btn { position: relative; overflow: hidden; }
.ht-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.ht-btn:active::after { width: 300px; height: 300px; }

/* ==========================================================================
   Minerals Section - Enhanced Cards
   ========================================================================== */
.minerals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 1199px) { .minerals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .minerals-grid { grid-template-columns: 1fr; } }

.mineral-card {
    background: var(--nt-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    border: 1px solid var(--nt-border);
    display: flex;
    flex-direction: column;
}

.mineral-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-color: var(--nt-primary); }

.mineral-card-header {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mineral-card-header.coltan { background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%); }
.mineral-card-header.cassiterite { background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%); }
.mineral-card-header.wolframite { background: linear-gradient(135deg, #553c9a 0%, #6b46c1 100%); }
.mineral-card-header.gold { background: linear-gradient(135deg, #744210 0%, #d69e2e 100%); }

.mineral-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
}

.mineral-icon i { font-size: 24px; color: var(--nt-white); }

.mineral-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nt-white);
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

.mineral-badge.gold-badge { background: var(--nt-gold); color: #1a1a1a; }

.mineral-card-body { padding: 24px 20px; flex-grow: 1; }

.mineral-formula {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--nt-secondary);
    background: var(--nt-light);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.mineral-card-body h3 { font-size: 20px; font-weight: 700; color: var(--nt-primary); margin-bottom: 2px; }
.mineral-subtitle { font-size: 12px; color: var(--nt-gray); margin-bottom: 12px; }
.mineral-desc { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 18px; }

.mineral-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
    padding: 12px;
    background: var(--nt-light);
    border-radius: 8px;
}

.spec-item { text-align: center; }
.spec-label { display: block; font-size: 10px; color: var(--nt-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.spec-value { display: block; font-size: 13px; font-weight: 700; color: var(--nt-primary); }

.mineral-applications { display: flex; flex-wrap: wrap; gap: 6px; }
.app-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--nt-primary);
    background: var(--nt-light);
    padding: 5px 10px;
    border-radius: 15px;
}
.app-tag i { font-size: 10px; color: var(--nt-secondary); }

.mineral-card-footer { padding: 0 20px 24px; margin-top: auto; }
.mineral-inquiry-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: var(--nt-light);
    color: var(--nt-primary);
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.3s;
}
.mineral-inquiry-btn:hover { background: var(--nt-primary); color: var(--nt-white); }
.mineral-inquiry-btn.gold-btn:hover { background: var(--nt-gold); color: #1a1a1a; }
.mineral-inquiry-btn i { margin-left: 6px; transition: transform 0.3s; }
.mineral-inquiry-btn:hover i { transform: translateX(4px); }

.minerals-trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: var(--nt-light);
    border-radius: 14px;
}

.minerals-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nt-primary);
}

.minerals-trust-bar .trust-item i { font-size: 18px; color: var(--nt-secondary); }

/* ==========================================================================
   Process Section - Enhanced Timeline
   ========================================================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

@media (max-width: 991px) { .process-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .process-timeline { grid-template-columns: 1fr; } }

.process-step {
    position: relative;
    text-align: center;
}

.step-connector { display: none; }

.step-number-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-number { font-size: 22px; font-weight: 700; color: var(--nt-white); }

.step-content {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
}

.step-content:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.step-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.step-content:hover .step-icon { background: var(--nt-primary); }
.step-icon i { font-size: 22px; color: var(--nt-primary); transition: color 0.3s; }
.step-content:hover .step-icon i { color: var(--nt-white); }

.step-content h4 { font-size: 17px; font-weight: 600; color: var(--nt-primary); margin-bottom: 10px; }
.step-content > p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 16px; }

.step-checklist { list-style: none; padding: 0; margin: 0 0 16px; text-align: left; }
.step-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--nt-primary);
    font-weight: 500;
    padding: 5px 0;
}
.step-checklist li i { font-size: 10px; color: var(--nt-accent); }

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nt-primary);
    background: var(--nt-light);
    padding: 6px 14px;
    border-radius: 20px;
}
.step-badge i { color: var(--nt-accent); }
.step-badge.success { background: rgba(72,187,120,0.1); color: #48bb78; }
.step-badge.success i { color: #48bb78; }

.process-bottom { margin-top: 50px; }
.process-guarantee {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--nt-white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

@media (max-width: 768px) { .process-guarantee { flex-direction: column; text-align: center; } }

.guarantee-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.guarantee-icon i { font-size: 28px; color: var(--nt-white); }

.guarantee-content { flex-grow: 1; }
.guarantee-content h5 { font-size: 18px; font-weight: 600; color: var(--nt-primary); margin-bottom: 5px; }
.guarantee-content p { font-size: 14px; color: var(--nt-gray); line-height: 1.6; margin: 0; }

/* ==========================================================================
   Location Section - Enhanced
   ========================================================================== */
.location-intro { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 30px; }

.location-visual { position: relative; }

.location-card-main {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--nt-border);
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--nt-border);
}

.location-pin {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
}
.location-pin i { font-size: 22px; color: var(--nt-white); }

.location-title h4 { font-size: 20px; font-weight: 700; color: var(--nt-primary); margin-bottom: 2px; }
.location-title span { font-size: 13px; color: var(--nt-gray); }

.location-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--nt-light);
    border-radius: 10px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-white);
    border-radius: 8px;
}
.highlight-icon i { font-size: 16px; color: var(--nt-primary); }

.highlight-text .highlight-value { display: block; font-size: 15px; font-weight: 700; color: var(--nt-primary); }
.highlight-text .highlight-label { display: block; font-size: 11px; color: var(--nt-gray); }

.location-address {
    padding: 20px;
    background: var(--nt-light);
    border-radius: 10px;
}

.address-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--nt-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.address-header i { font-size: 14px; }

.location-address > p { font-size: 14px; color: var(--nt-primary); font-weight: 500; line-height: 1.5; margin-bottom: 12px; }

.location-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nt-primary);
    background: var(--nt-white);
    padding: 6px 12px;
    border-radius: 20px;
}
.location-badge i { color: var(--nt-accent); }

.location-decorations { display: none; }

/* ==========================================================================
   Partners Section - Enhanced
   ========================================================================== */
.partners-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 991px) { .partners-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .partners-stats-grid { grid-template-columns: 1fr; } }

.partner-stat-card {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    border: 1px solid var(--nt-border);
}

.partner-stat-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.partner-stat-card.featured { border-color: var(--nt-primary); }

.partner-stat-card .stat-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.partner-stat-card:hover .stat-icon-wrap { background: var(--nt-primary); }
.partner-stat-card .stat-icon-wrap i { font-size: 24px; color: var(--nt-primary); transition: color 0.3s; }
.partner-stat-card:hover .stat-icon-wrap i { color: var(--nt-white); }

.partner-stat-card .stat-number { font-size: 36px; font-weight: 700; color: var(--nt-primary); line-height: 1; margin-bottom: 6px; }
.partner-stat-card .stat-number .suffix { font-size: 24px; }
.partner-stat-card .stat-title { font-size: 15px; font-weight: 600; color: var(--nt-primary); margin-bottom: 4px; }
.partner-stat-card .stat-desc { font-size: 12px; color: var(--nt-gray); margin: 0; }

.partners-regions-wrapper {
    background: var(--nt-white);
    border-radius: 14px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.regions-header { text-align: center; margin-bottom: 30px; }
.regions-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    margin: 0 auto 16px;
}
.regions-icon i { font-size: 24px; color: var(--nt-white); }
.regions-header h4 { font-size: 20px; font-weight: 700; color: var(--nt-primary); margin-bottom: 5px; }
.regions-header p { font-size: 14px; color: var(--nt-gray); margin: 0; }

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) { .regions-grid { grid-template-columns: 1fr; } }

.region-group h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nt-primary);
    margin-bottom: 12px;
}
.region-group h6 i { color: var(--nt-secondary); }

.partners-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--nt-white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

@media (max-width: 768px) { .partners-cta { flex-direction: column; text-align: center; } }

.cta-content h4 { font-size: 20px; font-weight: 700; color: var(--nt-primary); margin-bottom: 5px; }
.cta-content p { font-size: 14px; color: var(--nt-gray); margin: 0; }

/* ==========================================================================
   Why Choose Us Section - Enhanced
   ========================================================================== */
.choose-intro { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 30px; }

.choose-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--nt-white);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.35s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.choose-item:hover { transform: translateX(8px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }

.choose-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}

.choose-item:hover .choose-icon { background: var(--nt-primary); }
.choose-icon i { font-size: 24px; color: var(--nt-primary); transition: color 0.3s; }
.choose-item:hover .choose-icon i { color: var(--nt-white); }

.choose-num {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-secondary);
    color: var(--nt-white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
}

.choose-content h4 { font-size: 17px; font-weight: 600; color: var(--nt-primary); margin-bottom: 8px; }
.choose-content > p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 12px; }

.choose-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.choose-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nt-primary);
    background: var(--nt-light);
    padding: 5px 10px;
    border-radius: 15px;
}
.choose-tags span i { font-size: 9px; color: var(--nt-accent); }

.ht-choose-visual { position: relative; }

.choose-img-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.choose-img-wrapper img { width: 100%; height: auto; display: block; }
.choose-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6,50,49,0.6) 100%);
}

.choose-experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--nt-white);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.badge-content .badge-number { display: block; font-size: 36px; font-weight: 700; color: var(--nt-primary); line-height: 1; }
.badge-content .badge-text { display: block; font-size: 12px; color: var(--nt-gray); margin-top: 5px; }

.choose-floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--nt-white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 991px) { .choose-floating-card { left: 20px; } }

.floating-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
}
.floating-icon i { font-size: 18px; color: var(--nt-white); }

.floating-content .floating-value { display: block; font-size: 20px; font-weight: 700; color: var(--nt-primary); line-height: 1; }
.floating-content .floating-label { display: block; font-size: 11px; color: var(--nt-gray); }

/* ==========================================================================
   Testimonials Section - Enhanced
   ========================================================================== */
.ht-testimonials-area .section-desc.light { color: rgba(255,255,255,0.75) !important; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 991px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card.featured { background: rgba(255,255,255,0.12); border-color: rgba(195,223,148,0.3); }

.testimonial-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }

.quote-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195,223,148,0.15);
    border-radius: 8px;
}
.quote-icon i { font-size: 16px; color: var(--nt-accent); }

.testimonial-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.testimonial-product .product-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--nt-white);
    background: rgba(195,223,148,0.2);
    padding: 5px 12px;
    border-radius: 15px;
}
.product-tag.gold { background: rgba(212,175,55,0.3); color: var(--nt-gold); }

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.testimonials-stats .stat-item { text-align: center; }
.testimonials-stats .stat-value { display: block; font-size: 32px; font-weight: 700; color: var(--nt-white); line-height: 1; }
.testimonials-stats .stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 5px; }
.testimonials-stats .stat-divider { width: 1px; background: rgba(255,255,255,0.2); }

/* ==========================================================================
   FAQ Section - Enhanced
   ========================================================================== */
.faq-intro { font-size: 15px; color: var(--nt-gray); line-height: 1.7; margin-bottom: 25px; }

.faq-topics { margin-bottom: 30px; }
.faq-topics h5 { font-size: 14px; font-weight: 600; color: var(--nt-primary); margin-bottom: 12px; }

.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--nt-primary);
    background: var(--nt-light);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s;
}
.topic-tag:hover { background: var(--nt-primary); color: var(--nt-white); }

.faq-contact-box {
    display: flex;
    gap: 20px;
    background: var(--nt-light);
    padding: 28px;
    border-radius: 14px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-icon i { font-size: 24px; color: var(--nt-white); }

.contact-content p { font-size: 13px; color: var(--nt-gray); margin-bottom: 5px; }
.contact-content h4 { font-size: 18px; font-weight: 700; color: var(--nt-primary); margin-bottom: 15px; }

.faq-accordion .accordion-item { border: none; background: var(--nt-white); border-radius: 12px !important; margin-bottom: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
.faq-accordion .accordion-button { padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--nt-primary); background: var(--nt-white); box-shadow: none !important; gap: 12px; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--nt-primary); color: var(--nt-white); }
.faq-accordion .accordion-button::after { display: none; }

.faq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-icon i { font-size: 14px; color: var(--nt-primary); transition: color 0.3s; }
.accordion-button:not(.collapsed) .faq-icon { background: rgba(255,255,255,0.15); }
.accordion-button:not(.collapsed) .faq-icon i { color: var(--nt-white); }

.faq-accordion .accordion-body { padding: 0 22px 22px; color: var(--nt-gray); font-size: 14px; line-height: 1.7; }

.faq-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--nt-light);
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--nt-primary);
}
.faq-highlight i { color: var(--nt-accent); }

.faq-list { list-style: none; padding: 0; margin: 12px 0 0; }
.faq-list li { padding: 8px 0; border-bottom: 1px solid var(--nt-border); font-size: 13px; }
.faq-list li:last-child { border-bottom: none; }

.faq-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 12px 0;
}

.info-item { background: var(--nt-light); padding: 12px; border-radius: 8px; }
.info-label { display: block; font-size: 11px; color: var(--nt-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.info-value { display: block; font-size: 14px; font-weight: 600; color: var(--nt-primary); }

.faq-note { font-size: 12px; color: var(--nt-secondary); font-style: italic; margin-top: 12px !important; margin-bottom: 0 !important; }

.faq-countries { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.country-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--nt-primary);
    background: var(--nt-light);
    padding: 5px 12px;
    border-radius: 15px;
}

/* ==========================================================================
   Documents Section - Enhanced
   ========================================================================== */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 991px) { .documents-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .documents-grid { grid-template-columns: 1fr; } }

.document-card {
    background: var(--nt-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s;
    border: 1px solid var(--nt-border);
    display: flex;
    flex-direction: column;
}

.document-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }

.doc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--nt-light);
}

.doc-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-primary);
    border-radius: 12px;
}
.doc-icon i { font-size: 22px; color: var(--nt-white); }
.doc-icon.compliance { background: #2b6cb0; }
.doc-icon.legal { background: #744210; }
.doc-icon.technical { background: #553c9a; }
.doc-icon.corporate { background: #276749; }
.doc-icon.partnership { background: #c53030; }

.doc-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nt-white);
    background: #2b6cb0;
    padding: 4px 10px;
    border-radius: 15px;
}
.doc-badge.legal { background: #744210; }
.doc-badge.technical { background: #553c9a; }
.doc-badge.corporate { background: #276749; }
.doc-badge.partnership { background: #c53030; }

.doc-body { padding: 24px 20px; flex-grow: 1; }
.doc-body h4 { font-size: 17px; font-weight: 600; color: var(--nt-primary); margin-bottom: 10px; }
.doc-body > p { font-size: 13px; color: var(--nt-gray); line-height: 1.6; margin-bottom: 16px; }

.doc-features { list-style: none; padding: 0; margin: 0; }
.doc-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--nt-primary);
    font-weight: 500;
    padding: 5px 0;
}
.doc-features li i { font-size: 10px; color: var(--nt-accent); }

.doc-footer { padding: 0 20px 20px; margin-top: auto; }
.doc-request-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: var(--nt-light);
    color: var(--nt-primary);
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.3s;
}
.doc-request-btn:hover { background: var(--nt-primary); color: var(--nt-white); }
.doc-request-btn i { margin-right: 6px; }

.documents-note {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--nt-white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

@media (max-width: 768px) { .documents-note { flex-direction: column; text-align: center; } }

.note-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-light);
    border-radius: 50%;
    flex-shrink: 0;
}
.note-icon i { font-size: 24px; color: var(--nt-secondary); }

.note-content { flex-grow: 1; }
.note-content h5 { font-size: 17px; font-weight: 600; color: var(--nt-primary); margin-bottom: 5px; }
.note-content p { font-size: 14px; color: var(--nt-gray); line-height: 1.6; margin: 0; }
