/* ============================================================
   new-blog page — unique styles (shared rules live in blog-base.css)
   ============================================================ */

:root {
    --primary-navy: #003358;
    --accent-orange: #ff8d1b;
    --text-gray: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.blog-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 0 80px;
    color: white;
    text-align: left;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1.1;
    max-width: 900px;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 65%;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-breadcrumb {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 10;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.hero-breadcrumb a:hover {
    color: #ffffff !important;
}

.hero-breadcrumb .bc-sep {
    color: rgba(255,255,255,0.4);
    margin: 0 8px;
}

.hero-breadcrumb .bc-current {
    color: rgba(255,255,255,0.95);
    font-weight: 700;
}

.blog-page-wrapper {
    background-color: #f8fafc;
    padding-bottom: 50px;
}

.blog-summary-section {
    padding: 120px 0 60px;
    background: transparent;
    margin-top: -80px;
}

.summary-banner {
    background: #aaffe5;
    display: flex;
    align-items: center;
    padding: 100px 5%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    gap: 60px;
    min-height: 550px;
    z-index: 10;
}

.banner-left {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-left img {
    width: 100%;
    max-width: 380px;
}

.banner-right {
    flex: 1;
    padding-right: 5%;
}

.summary-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    color: #1a3b5d;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.summary-content p {
    font-size: 1.45rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
    max-width: 850px;
    font-weight: 400;
}

.featured-article-section {
    padding: 40px 0 100px;
    background: transparent;
}

.featured-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: stretch;
    min-height: 650px;
}

.tag-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-highlight-item {
    background: #f1f5f9;
    color: #334155;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.blog-listing-section {
    padding: 80px 0 100px;
    background: white;
}

.listing-header {
    text-align: center;
    margin-bottom: 50px;
}

.listing-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.listing-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 520px;
    margin: 0 auto;
}

.blog-filter-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.blog-filter-nav::-webkit-scrollbar {
    display: none;
}

.blog-filter-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 9px 22px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--primary-navy);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-filter-btn.active, .blog-filter-btn:hover {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
    box-shadow: 0 8px 20px rgba(0, 51, 88, 0.15);
    transform: translateY(-1px);
}

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

.blog-card-premium {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.blog-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 51, 88, 0.08);
    border-color: #e2e8f0;
}

.blog-card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-tag-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--accent-orange);
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-card-body {
    padding: 28px 28px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.3;
    transition: var(--transition);
}

.blog-card-premium:hover .blog-card-body h3 {
    color: var(--accent-orange);
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.85;
}

.blog-meta-minimal {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.meta-author-row {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-date-row {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.meta-dot-small {
    width: 3px;
    height: 3px;
    background: #cbd5e1;
    border-radius: 50%;
}

.btn-read-more {
    margin-top: auto;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    padding-top: 20px;
    border-top: 1px solid #f8fafc;
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--accent-orange);
    gap: 18px;
}

.conversation-cta-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    overflow: hidden;
    margin: 0;
}

.cta-msg {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #0f172a;
}

.cta-msg span {
    color: #066D77;
    font-weight: 800;
}

.btn-conversation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border: 2px solid #0f172a;
    cursor: pointer;
}

.btn-conversation:hover {
    background: transparent;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.blog-projects-section {
    padding: 120px 0;
    background: #f8fafc;
}

.projects-split-wrapper {
    display: flex;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
    background: white;
}

.projects-info-panel {
    flex: 0 0 38%;
    background: #0f172a;
    color: white;
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects-info-panel h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.projects-info-panel p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.btn-projects-view {
    background: white;
    color: #0f172a;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    width: fit-content;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.btn-projects-view:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.05);
}

.projects-list-panel {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.project-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
}

.project-row-item:last-child {
    border-bottom: none;
}

.project-row-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0 0 10px 0;
    transition: var(--transition);
}

.project-row-item:hover h4 {
    color: var(--accent-orange);
}

.project-row-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
}

.meta-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.project-row-thumb {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.project-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-row-item:hover .project-row-thumb img {
    transform: scale(1.1);
}

.inquiry-modal .modal-content {
    border-radius: 24px !important;
    overflow: hidden;
    border: none;
}

.inquiry-modal .step-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ff8d1b;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.inquiry-modal .step-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.inquiry-modal .form-control, .inquiry-modal .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 12px !important;
    padding: 1.2rem 1rem !important;
    background-color: #f8fafc !important;
    height: auto !important;
}

.inquiry-modal .form-control:focus, .inquiry-modal .form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(255, 141, 27, 0.1);
    background-color: white !important;
}

.inquiry-modal .btn-close {
    background-color: #f1f5f9;
    padding: 1rem;
    border-radius: 50%;
    z-index: 10;
}

@media (max-width: 768px) {
    .blog-hero {
        background-attachment: scroll;
        min-height: 70vh;
        margin-top: 0;
        padding: 110px 0 56px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-info-panel {
        padding: 60px 40px;
        flex: 0 0 45%;
    }
    .projects-list-panel {
        padding: 40px;
    }
}

@media (max-width: 991px) {
    .blog-hero h1 {
        font-size: 3.5rem;
    }
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .summary-title-card {
        padding: 40px;
    }
    .featured-box {
        flex-direction: column;
        min-height: unset;
    }
    .featured-image-side {
        flex: none;
        width: 100%;
        height: 340px;
    }
    .featured-content-side {
        padding: 50px;
    }
    .featured-title {
        font-size: 2.2rem;
    }
    .projects-split-wrapper {
        flex-direction: column;
    }
    .projects-info-panel {
        flex: none;
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .cta-msg {
        font-size: 1.8rem;
    }
    .project-row-item h4 {
        font-size: 1.4rem;
    }
    .project-row-thumb {
        width: 80px;
        height: 80px;
        margin-left: 20px;
    }
    .featured-image-side {
        height: 260px;
    }
    .featured-content-side {
        padding: 32px 24px;
    }
    .featured-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    .featured-desc {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    .featured-meta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
        padding-top: 24px;
    }
    .btn-featured-cta {
        padding: 14px 28px;
        font-size: 0.9rem;
        gap: 10px;
    }
    .blog-listing-section {
        padding: 52px 0 60px;
    }
    .listing-header {
        margin-bottom: 32px;
    }
    .listing-header h2 {
        font-size: 1.9rem;
    }
    .listing-header p {
        font-size: 0.95rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-card-img {
        height: 210px;
    }
    .blog-card-body {
        padding: 22px 20px;
    }
    .blog-card-body h3 {
        font-size: 1.2rem;
    }
    .blog-excerpt {
        font-size: 0.9rem;
    }
    .cta-msg {
        font-size: 1.5rem;
    }
    .btn-conversation {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
    .projects-split-wrapper {
        flex-direction: column;
        border-radius: 24px;
    }
    .projects-info-panel {
        padding: 36px 28px;
    }
    .projects-info-panel h2 {
        font-size: 2rem;
    }
    .projects-list-panel {
        padding: 24px 20px;
    }
    .project-row-item h4 {
        font-size: 1.1rem;
    }
    .project-row-thumb {
        width: 72px;
        height: 72px;
        margin-left: 14px;
        border-radius: 12px;
    }
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-breadcrumb {
        bottom: 24px;
        font-size: 0.75rem;
    }
}

@media (max-width: 479px) {
    .featured-image-side {
        height: 220px;
    }
    .featured-title {
        font-size: 1.55rem;
    }
    .featured-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
        margin-bottom: 18px;
    }
}

