/* ============================================
   NakliyemVar — Premium Landing Page
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #22e3b6;
    --primary-dark: #1bc49d;
    --primary-light: #3dffd4;
    --accent: #0a1628;
    --accent-light: #132240;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-glass: rgba(255,255,255,0.08);
    --border-glass: rgba(255,255,255,0.12);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #132240 40%, #1a3456 100%);
    --gradient-primary: linear-gradient(135deg, #22e3b6 0%, #1bc49d 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(34,227,182,0.25);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ---- Reset Overrides ---- */
.premium-landing * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.premium-landing {
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
}

/* ---- Section Base ---- */
.premium-section {
    padding: 100px 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,227,182,0.1);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(34,227,182,0.2);
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
}

/* ============================================
   HEADER
   ============================================ */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

/* Homepage: header starts transparent over dark hero */
.premium-header.hero-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 16px 0;
    box-shadow: none;
}

.premium-header.hero-transparent.scrolled {
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--accent);
    text-decoration: none;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.header-contact:hover {
    color: var(--primary);
    text-decoration: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,227,182,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,227,182,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,227,182,0.1);
    border: 1px solid rgba(34,227,182,0.2);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--accent);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--accent);
    text-decoration: none;
}

.store-btn i {
    font-size: 28px;
}

.store-btn .store-text {
    line-height: 1.2;
}

.store-btn .store-text small {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.store-btn .store-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.store-btn.dark {
    background: var(--accent);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.15);
}

.store-btn.dark:hover {
    border-color: var(--primary);
    color: var(--white);
}

.store-btn.dark .store-text small {
    color: rgba(255,255,255,0.6);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a3456, #0a1628);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.08);
}

.hero-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 40%, var(--accent) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
}

.phone-app-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.phone-app-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.phone-app-name {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.phone-app-desc {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}

.phone-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.phone-floating-card.card-1 {
    top: 20%;
    right: -60px;
    animation-delay: 0s;
}

.phone-floating-card.card-2 {
    bottom: 25%;
    left: -50px;
    animation-delay: 1.5s;
}

.phone-floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.phone-floating-card .card-icon.green {
    background: rgba(34,227,182,0.15);
    color: var(--primary-dark);
}

.phone-floating-card .card-icon.blue {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
}

.phone-floating-card .card-text {
    line-height: 1.3;
}

.phone-floating-card .card-text strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.phone-floating-card .card-text small {
    font-size: 12px;
    color: var(--text-light);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--bg-light);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(34,227,182,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}

.service-icon.green { background: rgba(34,227,182,0.12); color: var(--primary-dark); }
.service-icon.blue { background: rgba(59,130,246,0.12); color: #3b82f6; }
.service-icon.orange { background: rgba(249,115,22,0.12); color: #f97316; }
.service-icon.purple { background: rgba(139,92,246,0.12); color: #8b5cf6; }

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-section {
    background: var(--white);
}

.step-card {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--accent);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(34,227,182,0.2));
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--bg-light);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(34,227,182,0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   DRIVER SECTION
   ============================================ */
.driver-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.driver-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(34,227,182,0.08), transparent 70%);
    pointer-events: none;
}

.driver-content {
    position: relative;
    z-index: 2;
}

.driver-section .section-title {
    color: var(--white);
}

.driver-section .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.driver-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.driver-benefit .benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(34,227,182,0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.driver-benefit .benefit-text h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.driver-benefit .benefit-text p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--white);
    text-align: center;
}

.cta-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,227,182,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card .section-title {
    color: var(--white);
}

.cta-card .section-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.premium-footer {
    background: var(--accent);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(34,227,182,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-contact-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom span {
    color: var(--primary);
    font-weight: 600;
}

.footer-app-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.footer-app-btns .store-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
}

.footer-app-btns .store-btn i {
    font-size: 22px;
}

.footer-app-btns .store-btn .store-text strong {
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .hero-phone-mockup {
        width: 260px;
        height: 520px;
    }

    .phone-floating-card.card-1 { right: -20px; }
    .phone-floating-card.card-2 { left: -20px; }

    .section-title {
        font-size: 34px;
    }

    .premium-section {
        padding: 70px 0;
    }

    .header-nav {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .header-logo {
        flex-shrink: 0;
    }

    .header-logo img {
        height: 32px;
        max-width: 120px;
        object-fit: contain;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,0.1);
        font-size: 20px;
    }

    .step-connector {
        display: none;
    }

    .cta-card {
        padding: 50px 30px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .stat-number {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .store-btn {
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .premium-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 28px 22px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .service-card h4 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 14px;
    }

    .step-card {
        margin-bottom: 40px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-app-btns {
        flex-direction: row;
    }
}

/* Bootstrap 4 gap utility polyfill */
.row.g-4 {
    margin-left: -12px;
    margin-right: -12px;
}

.row.g-4 > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

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

/* ---- Subpage Compatibility ---- */
.premium-landing .breadcrumb-area {
    padding-top: 120px;
    padding-bottom: 40px;
}

.premium-landing main {
    padding-top: 0;
}

/* Subpage content areas need space below fixed header */
.premium-landing .breadcrumb-content h2 {
    color: #fff;
}

.premium-landing .breadcrumb-content .breadcrumb-item a,
.premium-landing .breadcrumb-content .breadcrumb-item.active,
.premium-landing .breadcrumb-content .breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

/* Support and service areas on subpages */
.premium-landing .support-area,
.premium-landing .services-area,
.premium-landing .contact-area {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.premium-landing .s-section-title h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.premium-landing .s-section-title p,
.premium-landing .s-section-title li {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

/* ---- Mobile Nav Overlay ---- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,22,40,0.98);
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay a {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover {
    color: var(--primary);
}

/* Show CTA inside mobile nav even on mobile */
.mobile-nav-overlay .header-cta {
    display: inline-flex !important;
    margin-top: 12px;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ---- ETBIS Badge ---- */
.etbis-badge {
    margin-top: 20px;
}

.etbis-badge img {
    width: 80px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.etbis-badge img:hover {
    opacity: 1;
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.blog-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.blog-card-meta i {
    margin-right: 4px;
}

.blog-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark);
}

.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
}

/* Blog Article Content */
.blog-content-section {
    background: #fff;
}

.blog-article {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.9;
    font-size: 16px;
}

.blog-article .lead {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.blog-article h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    margin: 40px 0 16px;
    padding-top: 8px;
}

.blog-article h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--dark);
    margin: 28px 0 12px;
}

.blog-article p {
    margin-bottom: 16px;
}

.blog-article ul, .blog-article ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-article li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.blog-article strong {
    color: #1a1a2e;
}

/* Blog CTA Box */
.blog-cta-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    padding: 28px 32px;
    margin: 36px 0;
}

.blog-cta-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
}

.blog-cta-box h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.blog-cta-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* Blog Table */
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.blog-table thead th {
    background: var(--dark);
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}

.blog-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.blog-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.blog-table tbody tr:hover {
    background: #f0f7ff;
}

/* Related Posts */
.blog-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #eee;
}

.blog-related h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 16px;
}

.blog-related ul {
    list-style: none;
    padding: 0;
}

.blog-related li {
    margin-bottom: 10px;
}

.blog-related a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.blog-related a:hover {
    color: var(--dark);
    text-decoration: underline;
}

/* Blog Mobile */
@media (max-width: 767px) {
    .blog-article h2 {
        font-size: 20px;
    }
    .blog-article {
        font-size: 15px;
    }
    .blog-cta-box {
        padding: 20px 20px;
    }
    .blog-table {
        font-size: 13px;
    }
    .blog-table thead th,
    .blog-table tbody td {
        padding: 10px 12px;
    }
}
