/* ================================================
   DEEP.SA — Custom Styles
   deep-custom.css
   NO var(), hardcoded hex only
   ================================================ */

/* ---- Google Fonts (local) ---- */
/* Loaded via google-fonts.css */

/* ---- Base Reset & Body ---- */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #2C3E50;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* ---- Navbar ---- */
.navbar-fixed-top {
    background-color: #1E3A5F;
    border: none;
    padding: 0;
    min-height: 65px;
    z-index: 9999;
}

.navbar-brand {
    padding: 15px 20px;
    height: 65px;
}

.navbar-brand span {
    color: #C9A84C;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-brand span em {
    color: #ffffff;
    font-style: normal;
}

.navbar-nav > li > a {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 22px 16px;
    line-height: 21px;
    transition: color 0.2s ease;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: #C9A84C;
    background: transparent;
    border-bottom: 2px solid #C9A84C;
}

.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover {
    color: #C9A84C;
    background: transparent;
    border-bottom: 2px solid #C9A84C;
}

.navbar-toggle {
    border-color: #C9A84C;
    margin-top: 15px;
}

.navbar-toggle .icon-bar {
    background-color: #C9A84C;
}

.navbar-collapse {
    background-color: #1E3A5F;
    border: none;
}

body {
    padding-top: 65px;
}

/* ---- Hero Banner ---- */
.hero-banner {
    background-color: #0D1B2A;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 27, 42, 0.82);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner .left-side {
    padding-top: 30px;
    padding-bottom: 30px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    max-width: 200px;
}

.hero-banner h1 {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-banner h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #EAF0F6;
    line-height: 1.5;
    margin-bottom: 36px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-gold {
    background-color: #C9A84C;
    color: #0D1B2A;
    border: 2px solid #C9A84C;
    border-radius: 4px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary-gold:hover,
.btn-primary-gold:focus {
    background-color: #B8973B;
    border-color: #B8973B;
    color: #0D1B2A;
    text-decoration: none;
}

.btn-ghost-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-ghost-white:hover,
.btn-ghost-white:focus {
    background-color: rgba(255,255,255,0.12);
    color: #ffffff;
    text-decoration: none;
}

.btn-gold {
    background-color: #C9A84C;
    color: #0D1B2A;
    border: 2px solid #C9A84C;
    border-radius: 4px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-gold:hover,
.btn-gold:focus {
    background-color: #B8973B;
    border-color: #B8973B;
    color: #0D1B2A;
    text-decoration: none;
}

button.btn-submit,
.contact-form .btn-submit {
    display: block;
    background-color: #1E3A5F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
    width: 100% !important;
    text-align: center;
}

.btn-submit:hover,
.btn-submit:focus {
    background-color: #C9A84C;
    color: #0D1B2A;
    transform: translateY(-2px);
}

.hero-visual img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ---- Hero Dot Animation ---- */
.hero-dots {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-dots span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #C9A84C;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatDot 8s infinite ease-in-out;
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
    50% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
}

/* ---- Stats Bar ---- */
.hero-stats-bar {
    background-color: #1E3A5F;
    padding: 32px 0;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #C9A84C;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #EAF0F6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* ---- Section Common ---- */
.section-pad {
    padding: 80px 0;
}

.section-pad-light {
    padding: 80px 0;
    background-color: #EAF0F6;
}

.section-pad-dark {
    padding: 80px 0;
    background-color: #0D1B2A;
}

.section-pad-navy {
    padding: 80px 0;
    background-color: #1E3A5F;
}

/* ---- Section Heading ---- */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading .label-tag {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #C9A84C;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 16px;
}

.section-heading.light h2 {
    color: #ffffff;
}

.section-heading .heading-underline {
    width: 60px;
    height: 3px;
    background-color: #C9A84C;
    margin: 0 auto;
    border-radius: 2px;
}

.section-heading p {
    max-width: 600px;
    margin: 20px auto 0;
    color: #7F8C8D;
    font-size: 16px;
}

/* ---- Feature Cards ---- */
.feature-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-top 0.25s ease;
    border-top: 3px solid transparent;
    height: 100%;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-top-color: #C9A84C;
}

.feature-icon {
    width: 68px;
    height: 68px;
    background-color: #EAF0F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #1E3A5F;
    transition: background-color 0.25s ease;
}

.feature-card:hover .feature-icon {
    background-color: #1E3A5F;
    color: #C9A84C;
}

.feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1E3A5F;
    margin-bottom: 12px;
}

.feature-card p {
    color: #7F8C8D;
    font-size: 14px;
    line-height: 24px;
}

/* ---- Platform Tabs ---- */
.platform-tabs {
    background-color: #EAF0F6;
}

.nav-tabs.deep-tabs {
    border-bottom: 2px solid #1E3A5F;
    margin-bottom: 30px;
}

.nav-tabs.deep-tabs > li > a {
    color: #2C3E50;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 0;
    padding: 12px 24px;
    background: transparent;
    margin-right: 4px;
}

.nav-tabs.deep-tabs > li.active > a,
.nav-tabs.deep-tabs > li > a:hover {
    color: #1E3A5F;
    background: #ffffff;
    border-bottom: 3px solid #C9A84C;
}

.tab-content.deep-tab-content {
    background: #ffffff;
    border-radius: 0 6px 6px 6px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.tab-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #EAF0F6;
    color: #2C3E50;
    font-size: 15px;
}

.tab-feature-list li:last-child {
    border-bottom: none;
}

.tab-feature-list li i {
    color: #C9A84C;
    margin-right: 10px;
    width: 18px;
}

/* ---- Client Logos ---- */
.client-logos-section {
    background-color: #ffffff;
}

.client-logo-item {
    text-align: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo-item img {
    max-height: 55px;
    max-width: 140px;
}

/* ---- Blog Grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-grid-item {
    display: flex;
}

@media (max-width: 991px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ---- Blog Cards ---- */
.blog-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.blog-card-img {
    overflow: hidden;
    height: 200px;
}

.blog-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    font-size: 12px;
    color: #7F8C8D;
    margin-bottom: 10px;
}

.blog-meta .category-badge {
    background-color: #EAF0F6;
    color: #1E3A5F;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.blog-card-body h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body p {
    color: #7F8C8D;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 16px;
}

.read-more-link {
    color: #C9A84C;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.read-more-link:hover {
    border-bottom-color: #C9A84C;
    color: #B8973B;
    text-decoration: none;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background-color: #1E3A5F;
    padding: 70px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-banner p {
    color: #EAF0F6;
    font-size: 16px;
    margin-bottom: 30px;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background-color: #0D1B2A;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1E3A5F 0%, #0D1B2A 100%);
    opacity: 0.9;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    color: #EAF0F6;
    margin-bottom: 12px;
}

.page-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #7F8C8D;
}

.page-breadcrumb li a {
    color: #C9A84C;
    text-decoration: none;
}

.page-breadcrumb li a:hover {
    text-decoration: underline;
}

.page-breadcrumb li + li::before {
    content: '/';
    color: #7F8C8D;
    margin-right: 8px;
}

/* ---- Footer ---- */
.deep-footer {
    background-color: #0D1B2A;
    padding: 60px 0 30px;
}

.footer-logo span {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #C9A84C;
    letter-spacing: -0.5px;
}

.footer-logo span em {
    color: #ffffff;
    font-style: normal;
}

.footer-tagline {
    color: #7F8C8D;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #7F8C8D;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #C9A84C;
}

.footer-contact p {
    color: #7F8C8D;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact p i {
    color: #C9A84C;
    margin-right: 8px;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7F8C8D;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 15px;
}

.footer-social a:hover {
    background-color: #C9A84C;
    color: #0D1B2A;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: #7F8C8D;
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #7F8C8D;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #C9A84C;
}

/* ---- Team Cards ---- */
.team-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.team-card .team-avatar-initial {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
}

.team-card .team-avatar-initial.gold {
    background: #C9A84C;
    color: #1a2332;
}

.team-card .team-avatar-initial.dark {
    background: #2C3E50;
    color: #C9A84C;
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top center;
}

.team-card .team-info {
    padding: 20px;
}

.team-card .team-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 4px;
}

.team-card .team-info .title {
    color: #7F8C8D;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.team-card .team-info .linkedin {
    color: #1E3A5F;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-card .team-info .linkedin:hover {
    color: #C9A84C;
}

/* CEO Feature Card */
.ceo-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    margin-bottom: 40px;
}

.ceo-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
}

.ceo-card .ceo-info {
    padding: 36px;
}

.ceo-card .ceo-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1E3A5F;
    margin-bottom: 6px;
}

.ceo-card .ceo-info .ceo-title {
    color: #C9A84C;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.ceo-card .ceo-info .ceo-location {
    color: #7F8C8D;
    font-size: 14px;
    margin-bottom: 20px;
}

.ceo-card .ceo-info p {
    color: #2C3E50;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 20px;
}

/* ---- Module Cards ---- */
.module-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 30px;
    border-left: 4px solid #C9A84C;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.module-card .module-icon {
    font-size: 32px;
    color: #1E3A5F;
    margin-bottom: 16px;
}

.module-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 10px;
}

.module-card p {
    color: #7F8C8D;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
}

/* ---- Contact Form ---- */
.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 15px;
    color: #2C3E50;
    height: auto;
    margin-bottom: 18px;
    transition: border-color 0.2s ease;
}

.contact-form .form-control:focus {
    border-color: #1E3A5F;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}

.contact-info-block {
    background-color: #EAF0F6;
    border-radius: 6px;
    padding: 36px;
}

.contact-info-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    background-color: #1E3A5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item .text p {
    margin: 0;
    color: #2C3E50;
    font-size: 15px;
}

.contact-info-item .text small {
    color: #7F8C8D;
    font-size: 13px;
}

/* ---- Timeline ---- */
.timeline-section {
    position: relative;
}

.timeline-steps {
    display: flex;
    gap: 0;
    position: relative;
    margin-top: 40px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background-color: #C9A84C;
}

.timeline-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.timeline-dot {
    width: 64px;
    height: 64px;
    background-color: #1E3A5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #C9A84C;
    border: 3px solid #C9A84C;
    position: relative;
    z-index: 2;
}

.timeline-step h5 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 14px;
    color: #7F8C8D;
    line-height: 22px;
}

/* ---- Values ---- */
.value-block {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.value-icon {
    font-size: 36px;
    color: #C9A84C;
    margin-bottom: 16px;
}

.value-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 10px;
}

.value-block p {
    color: #7F8C8D;
    font-size: 14px;
    line-height: 22px;
}

/* ---- Integration Logos ---- */
.integration-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.integration-logos .int-logo {
    background: #ffffff;
    border-radius: 6px;
    padding: 16px 24px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.07);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1E3A5F;
}

/* ---- Pagination ---- */
.deep-pagination .pagination > li > a,
.deep-pagination .pagination > li > span {
    color: #1E3A5F;
    border-color: #ddd;
}

.deep-pagination .pagination > li.active > a,
.deep-pagination .pagination > li.active > span {
    background-color: #1E3A5F;
    border-color: #1E3A5F;
    color: #ffffff;
}

.deep-pagination .pagination > li > a:hover {
    background-color: #EAF0F6;
    color: #1E3A5F;
}

/* ---- Filter Tags ---- */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-tag {
    background-color: #EAF0F6;
    color: #1E3A5F;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.filter-tag:hover,
.filter-tag.active {
    background-color: #1E3A5F;
    color: #ffffff;
    border-color: #1E3A5F;
    text-decoration: none;
}

/* ---- Cookie Banner ---- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0D1B2A;
    color: #EAF0F6;
    padding: 16px 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: #EAF0F6;
    flex: 1;
    min-width: 200px;
}

#cookie-banner a {
    color: #C9A84C;
    text-decoration: underline;
}

#cookie-banner-accept {
    background-color: #C9A84C;
    color: #0D1B2A;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

#cookie-banner-accept:hover {
    background-color: #B8973B;
}

/* ---- Utility ---- */
.text-gold { color: #C9A84C; }
.text-navy { color: #1E3A5F; }
.text-muted-custom { color: #7F8C8D; }
.bg-light-slate { background-color: #EAF0F6; }
.bg-navy { background-color: #1E3A5F; }
.bg-dark-charcoal { background-color: #0D1B2A; }

.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.mt-50 { margin-top: 50px; }

.vc-badge {
    display: inline-block;
    background-color: rgba(201,168,76,0.15);
    color: #C9A84C;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-banner h1 { font-size: 36px; }
    .hero-banner h2 { font-size: 17px; }
    .hero-visual { margin-top: 40px; }
    .timeline-steps { flex-direction: column; }
    .timeline-steps::before { display: none; }
    .stat-item { padding: 10px; }
    .stat-number { font-size: 28px; }
}

@media (max-width: 767px) {
    .hero-banner { min-height: auto; padding: 80px 0 60px; }
    .hero-banner h1 { font-size: 30px; }
    .section-heading h2 { font-size: 26px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group a { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-social { justify-content: center; }
    .page-hero h1 { font-size: 32px; }
    #cookie-banner { flex-direction: column; text-align: center; }
    .ceo-card img { height: 260px; }
}
/* Fix 1: Article page max-width */
.article-layout, .article-container, .article-content, .blog-article, .post-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }

/* Fix 2: Article text color */
.article-body p, .article-content p, .post-content p, .blog-article p { color: #444; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.article-body h2, .article-content h2, .post-content h2 { color: #222; font-size: 24px; margin-top: 36px; margin-bottom: 16px; }
.article-body h3, .article-content h3, .post-content h3 { color: #333; font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { color: #444; margin-bottom: 20px; padding-left: 24px; }
.article-body li, .article-content li { margin-bottom: 8px; line-height: 1.7; }

/* Fix 4: Blog card flex layout */
.blog-card { display: flex; flex-direction: column; min-height: 420px; }
.blog-card-body { display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-body > p:last-of-type, .blog-card-excerpt { flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-body > a:last-child, .blog-read-more { margin-top: auto; }

/* Article breadcrumb styling */
.breadcrumb-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}
.breadcrumb-nav span {
    color: rgba(255,255,255,0.6);
}
