/* ========================================
   Blog Styles - Elan The Statement
   Dark Theme Blog Design
   ======================================== */

/* ===== Blog Hero Section ===== */
.blog-hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(218, 188, 116, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 50%, #977138 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: 1.15rem;
    color: #B3B3B3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Article Hero Section ===== */
.article-hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(218, 188, 116, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.article-hero .container {
    position: relative;
    z-index: 1;
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
    color: #FFFFFF;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.article-meta i {
    margin-right: 0.4rem;
    color: #DABC74;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 1.25rem 0;
    font-size: 0.88rem;
    color: #666;
}

.breadcrumb a {
    color: #DABC74;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb span:last-child {
    margin-right: 0;
    color: #B3B3B3;
}

/* ===== Blog Section Wrapper ===== */
.blog-section {
    background: #0A0A0A;
    padding: 0;
}

/* ===== Two-Column Blog Layout ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    align-items: start;
    background: #0A0A0A;
}

.blog-main {
    min-width: 0;
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* ===== Blog Cards - List Style ===== */
.blog-card {
    background: #151515;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(218, 188, 116, 0.3);
    box-shadow: 0 8px 30px rgba(218, 188, 116, 0.15);
}

.blog-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-category {
    display: inline-block;
    background: rgba(218, 188, 116, 0.15);
    color: #DABC74;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
    width: fit-content;
}

.blog-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.65rem;
    color: #FFFFFF;
}

.blog-card h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: #DABC74;
}

.blog-card-excerpt {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: #666;
}

.blog-card-meta i {
    margin-right: 0.35rem;
    color: #DABC74;
    opacity: 0.7;
}

/* ===== Featured Article Card ===== */
.blog-card.featured-article {
    grid-template-columns: 1fr;
}

.featured-article .blog-card-image {
    height: 300px;
}

.featured-article .blog-card-content {
    padding: 2rem;
}

.featured-article h2 {
    font-size: 1.6rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #0A0A0A;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.featured-badge i {
    font-size: 0.65rem;
}

/* ===== Sidebar Widgets ===== */
.sidebar-widgets {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.widget {
    background: #151515;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.widget-heading i {
    color: #DABC74;
    font-size: 1rem;
}

/* Lead Form Widget */
.widget-lead-form {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    border-color: rgba(218, 188, 116, 0.3);
}

.widget-lead-form .widget-heading {
    color: #DABC74;
}

.widget-lead-form p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: #999;
    line-height: 1.6;
}

.widget-lead-form form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.widget-lead-form input,
.widget-lead-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.widget-lead-form input::placeholder {
    color: #666;
}

.widget-lead-form input:focus,
.widget-lead-form select:focus {
    outline: none;
    border-color: #DABC74;
    background: rgba(255, 255, 255, 0.08);
}

.widget-lead-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23DABC74' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.widget-lead-form select option {
    background: #1A1A1A;
    color: #FFFFFF;
}

.widget-lead-form .btn-submit {
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #0A0A0A;
    border: none;
    padding: 0.95rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.widget-lead-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(218, 188, 116, 0.3);
}

/* Contact Widget */
.widget-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-contact .contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-contact .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.widget-contact .contact-icon.phone {
    background: rgba(37, 99, 235, 0.15);
    color: #3b82f6;
}

.widget-contact .contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.widget-contact .contact-icon.email {
    background: rgba(220, 38, 38, 0.15);
    color: #ef4444;
}

.widget-contact .contact-details h4 {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.widget-contact .contact-details a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-contact .contact-details a:hover {
    color: #DABC74;
}

/* Featured Posts Widget */
.widget-featured-posts .featured-post-item {
    display: flex;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-featured-posts .featured-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-featured-posts .featured-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.widget-featured-posts .featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.widget-featured-posts .featured-post-item:hover .featured-post-image img {
    transform: scale(1.1);
}

.widget-featured-posts .featured-post-content h4 {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.widget-featured-posts .featured-post-content h4 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-featured-posts .featured-post-content h4 a:hover {
    color: #DABC74;
}

.widget-featured-posts .featured-post-content span {
    font-size: 0.72rem;
    color: #666;
}

/* Quick Links Widget */
.widget-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-quick-links ul li {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.widget-quick-links ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-quick-links ul li a {
    color: #B3B3B3;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.widget-quick-links ul li a:hover {
    color: #DABC74;
    padding-left: 0.5rem;
}

.widget-quick-links ul li a i {
    font-size: 0.75rem;
    color: #DABC74;
    opacity: 0.7;
}

/* ===== Article Content ===== */
.article-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: #FFFFFF;
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.article-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 1.5rem;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #DABC74;
    margin: 2rem 0 0.75rem;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #B3B3B3;
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.6rem;
    color: #B3B3B3;
}

.article-content strong {
    color: #FFFFFF;
}

.article-content a {
    color: #DABC74;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    text-decoration: none;
}

/* ===== Stats Grid ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(218, 188, 116, 0.08);
    border: 1px solid rgba(218, 188, 116, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-card .value {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #DABC74;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .label {
    font-size: 0.85rem;
    color: #888;
    display: block;
}

/* ===== Highlight Box ===== */
.highlight-box {
    background: rgba(218, 188, 116, 0.08);
    border-left: 4px solid #DABC74;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.highlight-box h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.85rem;
    color: #DABC74;
    font-size: 1.1rem;
}

.highlight-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.highlight-box li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #B3B3B3;
}

.highlight-box li strong {
    color: #FFFFFF;
}

/* ===== Data Table ===== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    font-size: 0.95rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th,
.data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table th {
    background: rgba(218, 188, 116, 0.15);
    color: #DABC74;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.data-table td {
    color: #B3B3B3;
}

.data-table tbody tr {
    transition: background 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(218, 188, 116, 0.05);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== CTA Inline ===== */
.cta-inline {
    background: linear-gradient(135deg, #151515 0%, #0A0A0A 100%);
    border: 1px solid rgba(218, 188, 116, 0.3);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 2.5rem 0;
}

.cta-inline h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.65rem;
    color: #DABC74;
}

.cta-inline p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-inline a {
    display: inline-block;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #0A0A0A;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.25rem;
    transition: all 0.3s ease;
}

.cta-inline a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(218, 188, 116, 0.3);
}

/* ===== Quote Box ===== */
.quote-box {
    background: rgba(218, 188, 116, 0.05);
    border-left: 4px solid #DABC74;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.quote-box p {
    font-style: italic;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0.75rem;
}

.quote-box cite {
    font-size: 0.9rem;
    color: #DABC74;
    font-style: normal;
}

/* ===== Table of Contents ===== */
.toc {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.toc h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #DABC74;
    font-size: 1.05rem;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin-bottom: 0.55rem;
}

.toc a {
    color: #B3B3B3;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.toc a:hover {
    color: #DABC74;
    padding-left: 0.5rem;
}

/* ===== Infrastructure Items ===== */
.infrastructure-item {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.infrastructure-item h4 {
    color: #DABC74;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.infrastructure-item p {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 0;
}

/* ===== Related Articles ===== */
.related-articles {
    background: #111111;
    padding: 4rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-articles h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.related-card {
    background: #151515;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
    transform: translateY(-3px);
}

.related-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.related-card h4 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card h4 a:hover {
    color: #DABC74;
}

.related-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(152, 114, 59, 0.15) 0%, #0A0A0A 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.cta-section .cta-content p {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-section .cta-buttons .btn {
    display: inline-block;
    background: linear-gradient(135deg, #98723B 0%, #DABC74 100%);
    color: #0A0A0A;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(218, 188, 116, 0.3);
}

/* ===== Price Cards ===== */
.price-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
}

.price-card.featured {
    border-color: rgba(218, 188, 116, 0.4);
    background: linear-gradient(135deg, rgba(218, 188, 116, 0.08) 0%, #151515 100%);
}

.price-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.price-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #DABC74;
    margin-bottom: 0.5rem;
}

.price-card .per-sqft {
    font-size: 0.9rem;
    color: #888;
}

/* ===== Comparison Box / Cards ===== */
.comparison-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.comparison-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    border-color: rgba(218, 188, 116, 0.3);
}

.comparison-card.featured {
    border-color: rgba(218, 188, 116, 0.4);
    background: linear-gradient(135deg, rgba(218, 188, 116, 0.08) 0%, #151515 100%);
}

.comparison-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #DABC74;
    margin-bottom: 1rem;
}

.comparison-card p {
    font-size: 0.95rem;
    color: #B3B3B3;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    padding: 0.5rem 0;
    color: #B3B3B3;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-card li:last-child {
    border-bottom: none;
}

.comparison-card strong {
    color: #FFFFFF;
}

/* ===== Calculation Box ===== */
.calculation-box {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.calculation-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #DABC74;
    margin-bottom: 1rem;
}

.calculation-box .calc-row,
.calculation-box .calc-item {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calculation-box .calc-row:last-child,
.calculation-box .calc-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.calculation-box .calc-row span:first-child {
    color: #888;
}

.calculation-box .calc-row span:last-child {
    color: #FFFFFF;
    font-weight: 600;
}

.calculation-box .calc-row.total {
    border-top: 1px solid rgba(218, 188, 116, 0.3);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

.calculation-box .calc-row.total span:last-child {
    color: #DABC74;
    font-size: 1.1rem;
}

/* ===== Calculation (inline) ===== */
.calculation {
    background: rgba(218, 188, 116, 0.08);
    border-left: 3px solid #DABC74;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: #B3B3B3;
}

.calculation strong {
    color: #FFFFFF;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #DABC74 0%, rgba(218, 188, 116, 0.2) 100%);
}

.timeline-item {
    position: relative;
    padding: 1rem 0;
    padding-left: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 1.25rem;
    width: 12px;
    height: 12px;
    background: #DABC74;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(218, 188, 116, 0.2);
}

.timeline-item h4 {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

/* ===== Warning Box ===== */
.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-left: 4px solid #FFC107;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.warning-box h4 {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box h4 i {
    font-size: 1.1rem;
}

.warning-box p {
    font-size: 0.95rem;
    color: #B3B3B3;
    margin-bottom: 0;
    line-height: 1.6;
}

.warning-box ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.warning-box li {
    font-size: 0.9rem;
    color: #B3B3B3;
    margin-bottom: 0.35rem;
}

/* ===== Comparison Table ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    font-size: 0.95rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
    background: rgba(218, 188, 116, 0.15);
    color: #DABC74;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table td {
    color: #B3B3B3;
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(218, 188, 116, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== Blog Responsive ===== */
@media (max-width: 1400px) {
    .blog-layout {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr 340px;
        gap: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-widgets {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .widget-lead-form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 50px;
    }

    .article-hero {
        padding: 120px 0 50px;
    }

    .blog-layout {
        padding: 1.5rem 1rem;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 200px;
    }

    .featured-article .blog-card-image {
        height: 240px;
    }

    .sidebar-widgets {
        grid-template-columns: 1fr;
    }

    .article-meta {
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-card .value {
        font-size: 1.5rem;
    }

    .comparison-box {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 1.5rem;
    }

    .price-card .price {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 40px;
    }

    .blog-hero h1 {
        font-size: 1.75rem;
    }

    .blog-hero p {
        font-size: 1rem;
    }

    .article-hero {
        padding: 100px 0 40px;
    }

    .article-hero h1 {
        font-size: 1.5rem;
    }

    .blog-layout {
        padding: 1rem;
        gap: 2rem;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card h2 {
        font-size: 1.1rem;
    }

    .featured-article h2 {
        font-size: 1.25rem;
    }

    .article-content h2 {
        font-size: 1.35rem;
    }

    .article-content h3 {
        font-size: 1.1rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card .value {
        font-size: 1.35rem;
    }

    .stat-card .label {
        font-size: 0.75rem;
    }

    .highlight-box {
        padding: 1.25rem;
    }

    .cta-inline {
        padding: 1.5rem;
    }

    .cta-inline h4 {
        font-size: 1.2rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .cta-section .cta-content h2 {
        font-size: 1.5rem;
    }
}
