/* ============================================
   DTC ADVERTISING PAGE — Styles
   ============================================ */

/* ========== NAVBAR (Light) ========== */
.dtc-navbar {
    background: #fff !important;
    border-bottom: 1px solid #e8ecf0;
    padding: 14px 0;
    transition: 0.3s ease;
    z-index: 1050;
    box-shadow: none !important;
}

.dtc-navbar.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
    padding: 10px 0;
}

.dtc-logo-dark {
    filter: none;
}

.dtc-navbar .nav-link {
    color: #3a4a5e !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px !important;
    transition: 0.3s ease;
}

.dtc-navbar .nav-link:hover,
.dtc-navbar .nav-link.active {
    color: #0F1A24 !important;
}

.dtc-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #F7932E;
    transition: 0.3s ease;
}

.dtc-navbar .nav-link:hover::after,
.dtc-navbar .nav-link.active::after {
    width: 50%;
}

.dtc-btn-login {
    color: #3a4a5e !important;
    border-color: #d5dbe3 !important;
}

.dtc-btn-login:hover {
    color: #0F1A24 !important;
    border-color: #aab4c2 !important;
    background: #f5f7fa !important;
}

.dtc-navbar .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

.dtc-navbar .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(0.4);
}

/* ========== HERO ========== */
.dtc-hero {
    background: #f5f7fa;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

.dtc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.dtc-hero-badge {
    display: inline-block;
    background: rgba(49, 154, 213, 0.1);
    color: #319AD5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dtc-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F1A24;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.dtc-hero-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 460px;
}

.dtc-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dtc-btn-outline {
    background: transparent;
    color: #0F1A24;
    border: 1.5px solid #d5dbe3;
    padding: 11px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.dtc-btn-outline:hover {
    border-color: #aab4c2;
    background: #fff;
    color: #0F1A24;
}

.dtc-hero-image-wrapper {
    position: relative;
}

.dtc-hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.12));
    animation: dtcFloat 4s ease-in-out infinite;
}

@keyframes dtcFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== PLATFORM (reuses main styles) ========== */
.dtc-platform {
    background: #fff;
}

/* ========== CAPABILITIES ========== */
.dtc-capabilities {
    background: #f9fafb;
}

/* Single 3-column grid */
.cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.cap-span-2 {
    grid-column: span 2;
}

.cap-card {
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Blue card — In-Content Placements */
.cap-card-blue {
    background: #319AD5;
    border: none;
}

.cap-card-blue:hover {
    box-shadow: 0 8px 30px rgba(49, 154, 213, 0.25);
}

.cap-card-blue .text-white {
    color: #fff !important;
}

.cap-card-blue .text-white-75 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cap-card-large {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cap-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F1A24;
    margin-bottom: 12px;
}

.cap-card-desc {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Progress Bar */
.cap-progress-bar {
    margin-top: auto;
    background: #f2f4f7;
    border-radius: 10px;
    padding: 20px 20px;
}

.cap-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cap-progress-label span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #006491;
}

.cap-progress-value {
    color: #1a3a5c !important;
    font-weight: 800;
}

.cap-progress-track {
    height: 8px;
    background: #dce2ea;
    border-radius: 50px;
    overflow: hidden;
}

.cap-progress-fill {
    height: 100%;
    background: #006491;
    border-radius: 50px;
    transition: width 1.5s ease;
}

/* Capability Icons */
.cap-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 16px;
}

.cap-icon-blue {
    background: rgba(49, 154, 213, 0.1);
    color: #319AD5;
}

.cap-icon-orange {
    background: rgba(247, 147, 46, 0.1);
    color: #F7932E;
}

.cap-icon-white {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cap-card-title-sm {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F1A24;
    margin-bottom: 8px;
}

.cap-card-desc-sm {
    font-size: 0.82rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========== TRUSTED ========== */
.dtc-trusted {
    background: #fff;
}

/* ========== DTC DETAIL ========== */
.dtc-detail {
    background: #f5f7fa;
}

.dtc-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.dtc-detail-img-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.dtc-detail-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dtc-detail-image:hover {
    transform: scale(1.02);
}

/* ========== CTA ========== */
.dtc-cta {
    padding: 80px 0 100px;
    background: #fff;
}

.dtc-cta-box {
    background: linear-gradient(165deg, #050b18 0%, #091425 30%, #0d1e35 55%, #122a48 100%);
    border-radius: 24px;
    padding: 65px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dtc-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(247, 147, 46, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 50%, rgba(26, 143, 255, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199.98px) {
    .dtc-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .dtc-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dtc-hero-image-col {
        display: none;
    }

    .dtc-hero {
        padding: 120px 0 60px;
    }

    .dtc-hero-title {
        font-size: 2rem;
    }

    .cap-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cap-span-2 {
        grid-column: span 2;
    }

    .dtc-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767.98px) {
    .dtc-hero {
        padding: 100px 0 50px;
    }

    .dtc-hero-title {
        font-size: 1.75rem;
    }

    .cap-grid {
        grid-template-columns: 1fr;
    }

    .cap-span-2 {
        grid-column: span 1;
    }

    .dtc-cta-box {
        padding: 40px 20px;
    }
}

@media (max-width: 575.98px) {
    .dtc-hero-title {
        font-size: 1.5rem;
    }

    .dtc-hero-buttons {
        flex-direction: column;
    }

    .dtc-hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .dtc-cta-box {
        padding: 30px 14px;
    }
}
