/* Tinta Industries - Modern Override CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --ti-navy: #1B2A4A;
    --ti-blue: #0055A4;
    --ti-amber: #E8900C;
    --ti-amber-hover: #D07E0A;
    --ti-light: #F7F8FA;
    --ti-dark: #0F1923;
    --ti-text: #2D3436;
    --ti-text-light: #636E72;
    --ti-white: #FFFFFF;
}

/* ── GLOBAL TYPOGRAPHY UPGRADES ── */
body { font-family: 'Inter', -apple-system, sans-serif !important; }
h1, h2, h3, h4, h5 { font-family: 'Inter', -apple-system, sans-serif !important; }

/* ── TOP BAR UPGRADE ── */
#call_email {
    background: var(--ti-dark) !important;
    padding: 10px 0 !important;
}
#call_email a { transition: color 0.3s; }
#call_email a:hover { color: var(--ti-amber) !important; }

/* ── HEADER UPGRADE ── */
header {
    background: var(--ti-white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
    padding: 10px 0 !important;
}
.navbar-dark .navbar-nav .nav-link {
    white-space: nowrap !important;
    margin-left: 15px !important;
    padding: 0 5px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px;
    transition: color 0.3s !important;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--ti-blue) !important;
}

/* ── HERO / BANNER ── */
.ti-hero-modern {
    position: relative;
    background: linear-gradient(135deg, var(--ti-navy) 0%, #0D1B2A 100%);
    overflow: hidden;
    padding: 0;
}
.ti-hero-modern .ti-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.ti-hero-modern .ti-hero-content {
    padding: 60px 40px 60px 60px;
    color: var(--ti-white);
}
.ti-hero-modern h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ti-white) !important;
    margin-bottom: 20px;
}
.ti-hero-modern h1 span { color: var(--ti-amber); }
.ti-hero-modern p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.ti-hero-modern .ti-hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.ti-hero-modern .ti-hero-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.ti-hero-modern .ti-hero-images img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Buttons */
.ti-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.ti-btn-amber {
    background: var(--ti-amber);
    color: var(--ti-white) !important;
}
.ti-btn-amber:hover {
    background: var(--ti-amber-hover);
    color: var(--ti-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,144,12,0.4);
}
.ti-btn-outline-white {
    background: transparent;
    color: var(--ti-white) !important;
    border: 2px solid rgba(255,255,255,0.4);
}
.ti-btn-outline-white:hover {
    border-color: var(--ti-white);
    background: rgba(255,255,255,0.1);
    color: var(--ti-white) !important;
}

/* ── TRUST BAR ── */
.ti-trust-bar {
    background: var(--ti-white);
    border-bottom: 1px solid #E8ECF0;
    padding: 25px 0;
}
.ti-trust-bar .ti-trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ti-trust-item { text-align: center; }
.ti-trust-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--ti-navy);
    display: block;
    line-height: 1;
}
.ti-trust-label {
    font-size: 13px;
    color: var(--ti-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 5px;
}
.ti-flags { font-size: 20px; margin-top: 6px; letter-spacing: 3px; }

/* ── SECTION STYLES ── */
.ti-section { padding: 80px 0; }
.ti-section-light { background: var(--ti-light); }
.ti-section-dark {
    background: linear-gradient(135deg, var(--ti-navy) 0%, #0D1B2A 100%);
    color: var(--ti-white);
}
.ti-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.ti-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.ti-section-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.ti-section-dark .ti-section-header h2 { color: var(--ti-white) !important; }
.ti-section-header p {
    font-size: 17px;
    color: var(--ti-text-light);
    max-width: 600px;
    margin: 0 auto;
}
.ti-section-dark .ti-section-header p { color: rgba(255,255,255,0.7); }
.ti-accent-line {
    width: 50px; height: 3px;
    background: var(--ti-amber);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ── PRODUCT GRID ── */
.ti-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ti-product-card {
    background: var(--ti-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #EEF0F2;
}
.ti-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.ti-product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background: #FAFBFC;
}
.ti-product-card .ti-card-body { padding: 20px; }
.ti-product-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ti-navy);
    margin-bottom: 6px;
}
.ti-product-card p {
    font-size: 14px;
    color: var(--ti-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ── FEATURES GRID ── */
.ti-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.ti-feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--ti-white);
    border-radius: 12px;
    border: 1px solid #EEF0F2;
    transition: box-shadow 0.3s;
}
.ti-feature-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.ti-feature-icon {
    width: 56px; height: 56px; min-width: 56px;
    background: linear-gradient(135deg, rgba(0,85,164,0.1), rgba(0,85,164,0.05));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--ti-blue);
}
.ti-feature-item h4 {
    font-size: 17px; font-weight: 600;
    color: var(--ti-navy); margin-bottom: 4px;
}
.ti-feature-item p {
    font-size: 14px; color: var(--ti-text-light);
    margin: 0; line-height: 1.6;
}

/* ── COUNTRIES ── */
.ti-countries-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.ti-country-item { text-align: center; }
.ti-country-flag { font-size: 48px; display: block; margin-bottom: 8px; }
.ti-country-name {
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.5px;
}

/* ── CTA SECTION ── */
.ti-cta-section {
    background: linear-gradient(135deg, #0D1B2A 0%, var(--ti-navy) 50%, #1a3a5c 100%);
    padding: 80px 0;
    text-align: center;
}
.ti-cta-section h2 { color: var(--ti-white) !important; font-size: 34px; margin-bottom: 12px; }
.ti-cta-section p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 30px; }

/* ── FOOTER MODERN ── */
.ti-footer {
    background: var(--ti-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.ti-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.ti-footer h4 {
    color: var(--ti-white) !important;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}
.ti-footer p { font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.ti-footer a { color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none; transition: color 0.3s; }
.ti-footer a:hover { color: var(--ti-amber); }
.ti-footer ul { list-style: none; padding: 0; margin: 0; }
.ti-footer ul li { margin-bottom: 10px; }
.ti-footer-logo { height: 40px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.ti-footer i { margin-right: 8px; color: var(--ti-amber); }
.ti-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP ── */
.ti-whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    width: 60px; height: 60px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 99999; transition: transform 0.3s;
    text-decoration: none !important;
}
.ti-whatsapp-float:hover { transform: scale(1.1); }

/* ── LANGUAGE SWITCH ── */
.ti-lang-btn {
    background: rgba(255,255,255,0.12); color: #fff !important;
    padding: 5px 14px; border-radius: 4px;
    font-size: 13px; font-weight: 600;
    text-decoration: none; display: inline-block;
    transition: background 0.3s;
}
.ti-lang-btn:hover { background: rgba(255,255,255,0.25); color: #fff !important; }

/* ── HIDE OLD ELEMENTS ── */
#banner, .services, .gift, #cbd_section, .bottom-section, .choose { display: none !important; }
#footer { display: none !important; }

/* ── INNER PAGES ── */
.ti-page-header {
    background: linear-gradient(135deg, var(--ti-navy) 0%, #0D1B2A 100%);
    padding: 50px 0;
    text-align: center;
}
.ti-page-header h2 { color: var(--ti-white) !important; font-size: 36px; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .ti-hero-modern .ti-hero-grid { grid-template-columns: 1fr; }
    .ti-hero-modern .ti-hero-content { padding: 50px 30px; text-align: center; }
    .ti-hero-modern .ti-hero-btns { justify-content: center; }
    .ti-hero-modern .ti-hero-images { padding: 0 30px 40px; }
    .ti-hero-modern h1 { font-size: 34px; }
    .ti-products-grid { grid-template-columns: repeat(2, 1fr); }
    .ti-features-grid { grid-template-columns: 1fr; }
    .ti-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ti-products-grid { grid-template-columns: 1fr; }
    .ti-footer-grid { grid-template-columns: 1fr; }
    .ti-hero-modern h1 { font-size: 28px; }
    .ti-trust-bar .ti-trust-grid { gap: 30px; }
}
/* ── HERO IMAGE FIX ── */
.ti-hero-modern .ti-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 500px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    align-items: center !important;
}
.ti-hero-modern .ti-hero-images {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px !important;
    overflow: visible !important;
}
.ti-hero-modern .ti-hero-images img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
    visibility: visible !important;
    opacity: 1 !important;
}
@media (max-width: 992px) {
    .ti-hero-modern .ti-hero-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════
   TINTA INDUSTRIES - MODERN BLOG STYLES
   ══════════════════════════════════════════ */

/* ── BLOG HERO BANNER ── */
.ti-blog-hero {
    position: relative;
    background: linear-gradient(135deg, var(--ti-navy) 0%, #0D1B2A 100%);
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
    clear: both;
}
.ti-blog-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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: 1;
}
.ti-blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.ti-blog-meta-top {
    margin-bottom: 20px;
}
.ti-blog-category {
    display: inline-block;
    background: var(--ti-amber);
    color: #fff !important;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    margin: 0 5px;
    transition: background 0.3s;
}
.ti-blog-category:hover {
    background: var(--ti-amber-hover);
    color: #fff !important;
}
.ti-blog-hero h1 {
    color: #fff !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 40px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 0 20px 0 !important;
}
.ti-blog-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.ti-blog-meta i {
    margin-right: 6px;
    color: var(--ti-amber);
}

/* ── BLOG ARTICLE BODY ── */
.ti-blog-article {
    background: var(--ti-white);
    padding: 0 20px;
}
.ti-blog-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Image */
.ti-blog-featured-img {
    margin: -40px auto 40px;
    max-width: 860px;
    position: relative;
    z-index: 3;
}
.ti-blog-featured-img img,
.ti-blog-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: block;
}

/* Blog Content Typography */
.ti-blog-content {
    padding: 40px 0 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--ti-text);
}
.ti-blog-content h2 {
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--ti-navy) !important;
    margin: 50px 0 20px !important;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--ti-amber);
    display: inline-block;
}
.ti-blog-content h2::after {
    content: none;
}
.ti-blog-content h3 {
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--ti-navy) !important;
    margin: 35px 0 15px !important;
}
.ti-blog-content p {
    margin-bottom: 20px;
    color: var(--ti-text);
    font-size: 17px;
    line-height: 1.8;
}
.ti-blog-content a {
    color: var(--ti-blue) !important;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid rgba(0,85,164,0.2);
    transition: border-color 0.3s;
}
.ti-blog-content a:hover {
    border-bottom-color: var(--ti-blue);
}
.ti-blog-content strong {
    color: var(--ti-navy);
    font-weight: 600;
}

/* Lists */
.ti-blog-content ul,
.ti-blog-content ol {
    margin: 20px 0 25px 0;
    padding-left: 0;
}
.ti-blog-content ul li,
.ti-blog-content ol li {
    margin-bottom: 12px;
    padding-left: 10px;
    line-height: 1.7;
}
.ti-blog-content ul li {
    list-style: none;
    position: relative;
    padding-left: 24px;
}
.ti-blog-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--ti-amber);
    border-radius: 50%;
}
.ti-blog-content ol {
    counter-reset: blog-counter;
    list-style: none;
}
.ti-blog-content ol li {
    counter-increment: blog-counter;
    position: relative;
    padding-left: 40px;
}
.ti-blog-content ol li::before {
    content: counter(blog-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: var(--ti-navy);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tables */
.ti-blog-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    font-size: 15px;
}
.ti-blog-content table thead tr {
    background: var(--ti-navy);
}
.ti-blog-content table thead th {
    color: #fff !important;
    font-weight: 600;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ti-blog-content table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    color: var(--ti-text);
}
.ti-blog-content table tbody tr:nth-child(even) {
    background: var(--ti-light);
}
.ti-blog-content table tbody tr:last-child td {
    border-bottom: none;
}
.ti-blog-content table tbody tr:hover {
    background: #EBF0F7;
}

/* Images inside content */
.ti-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
    display: block;
}

/* ── SHARE BUTTONS ── */
.ti-blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 25px 0;
    margin: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ti-text-light);
}
.ti-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ti-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #fff !important;
}
.ti-share-fb { background: #1877F2; }
.ti-share-li { background: #0A66C2; }
.ti-share-wa { background: #25D366; }

/* ── CTA BOX ── */
.ti-blog-cta {
    background: linear-gradient(135deg, var(--ti-navy) 0%, #0D1B2A 100%);
    border-radius: 16px;
    padding: 45px 40px;
    text-align: center;
    margin: 40px 0 50px;
    position: relative;
    overflow: hidden;
}
.ti-blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--ti-amber);
    border-radius: 50%;
    opacity: 0.08;
}
.ti-blog-cta h3 {
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
    border: none !important;
    padding: 0 !important;
}
.ti-blog-cta p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 16px !important;
    margin-bottom: 25px !important;
    max-width: 500px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.ti-blog-cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.ti-btn-outline-navy {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s;
}
.ti-btn-outline-navy:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff !important;
}

/* ── RELATED POSTS ── */
.ti-related-posts {
    background: var(--ti-light);
    padding: 60px 20px;
}
.ti-related-posts h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--ti-navy) !important;
    text-align: center;
    margin: 0 0 40px 0 !important;
}
.ti-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.ti-related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.ti-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.ti-related-card img,
.ti-related-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.ti-related-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--ti-navy), #0D1B2A);
}
.ti-related-body {
    padding: 20px;
}
.ti-related-date {
    font-size: 13px;
    color: var(--ti-text-light);
    font-family: 'Inter', sans-serif;
}
.ti-related-card h4 {
    font-family: 'Inter', sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--ti-navy) !important;
    margin: 8px 0 0 0 !important;
    line-height: 1.4 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ti-blog-hero {
        padding: 60px 15px 40px;
    }
    .ti-blog-hero h1 {
        font-size: 28px !important;
    }
    .ti-blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    .ti-blog-featured-img {
        margin-top: -25px;
    }
    .ti-blog-content {
        font-size: 16px;
        padding: 25px 0 20px;
    }
    .ti-blog-content h2 {
        font-size: 23px !important;
    }
    .ti-blog-content h3 {
        font-size: 19px !important;
    }
    .ti-blog-content table {
        font-size: 13px;
    }
    .ti-blog-content table thead th,
    .ti-blog-content table tbody td {
        padding: 10px 12px;
    }
    .ti-blog-cta {
        padding: 30px 25px;
    }
    .ti-blog-cta h3 {
        font-size: 22px !important;
    }
    .ti-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ti-blog-container {
        padding: 0 10px;
    }
}

/* ── HIDE OLD BLOG STYLES ── */
#inner-post-section .heading-section {
    display: none !important;
}


/* ── ACCESSIBILITY CONTRAST FIXES ── */

/* Ensure body text has sufficient contrast (min 4.5:1 ratio) */
.ti-trust-label {
    color: #4A5568 !important; /* Was lighter gray, now 4.6:1 on white */
}

.ti-section p, .ti-card-body p, .ti-feature-item p {
    color: #4A5568 !important; /* Dark enough for 4.5:1 on white */
}

/* Footer text contrast on dark background */
.ti-footer p, .ti-footer li, .ti-footer a {
    color: rgba(255,255,255,0.85) !important;
}
.ti-footer a:hover {
    color: #ffffff !important;
}
.ti-footer-bottom {
    color: rgba(255,255,255,0.7) !important;
}
.ti-footer-bottom a {
    color: rgba(255,255,255,0.85) !important;
}

/* CTA section text contrast */
.ti-cta-section p {
    color: rgba(255,255,255,0.9) !important;
}

/* Dark section text */
.ti-section-dark p, .ti-section-dark .ti-country-name {
    color: rgba(255,255,255,0.9) !important;
}

/* Trust bar numbers - ensure contrast */
.ti-trust-number {
    color: #1B2A4A !important;
}

/* Nav links contrast */
.navbar-dark .navbar-nav .nav-link {
    white-space: nowrap !important;
    margin-left: 15px !important;
    padding: 0 5px !important;
    color: #1B2A4A !important;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #0055A4 !important;
}

/* Top bar email/phone link contrast */
#call_email a {
    color: rgba(255,255,255,0.95) !important;
}
#call_email i {
    color: rgba(255,255,255,0.9) !important;
}

/* Hero subtitle contrast */
section[style*="background:#1B2A4A"] p {
    color: rgba(255,255,255,0.9) !important;
}

/* Focus indicators for keyboard navigation */
a:focus-visible, button:focus-visible {
    outline: 3px solid #E8900C !important;
    outline-offset: 2px !important;
}

/* Skip navigation link (screen reader accessible) */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 999999;
    padding: 15px 25px;
    background: #1B2A4A;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-to-main:focus {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
}

/* ── END ACCESSIBILITY FIXES ── */
/* ── BUTTON CONTRAST FIX ── */
.ti-btn-amber { background: #C67A00 !important; color: #fff !important; }
.ti-btn-amber:hover { background: #A86800 !important; }
