/*
 Theme Name:    GeneratePress Child
 Description:   Tema copil pentru obdtuning.ro
 Author:        Alex Stancu
 Template:      generatepress
 Version:       1.1.0
*/

/* --- CSS pentru Frontpage v1.1 (Corectat & Optimizat) --- */


:root {
    --obd-red: #A81C1C;
    --obd-red-hover: #8B1414;
    --obd-red-light: #FEE2E2;
    --obd-bg-white: #FFFFFF;
    --obd-bg-light: #F9FAFB;
    --obd-text-primary: #111827;
    --obd-text-secondary: #4B5563;
    --obd-border: #E5E7EB;
    --obd-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --obd-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Container principal - stil minimalist alb */
.obd-landing-wrapper {
    background-color: var(--obd-bg-white);
    color: var(--obd-text-primary);
    font-family: var(--obd-font);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

.obd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Titluri de secțiune în stil Apple, curate, aerisite */
.obd-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--obd-text-primary);
    margin-bottom: 50px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--obd-red);
    letter-spacing: -0.5px;
}

/* ==========================================================================
   [SECȚIUNEA 1. HERO SECTION]
   ========================================================================== */
.obd-hero-section {
    background: radial-gradient(circle at top right, var(--obd-red-light) 0%, var(--obd-bg-white) 60%);
    padding: 100px 20px;
    border-bottom: 1px solid var(--obd-border);
}

.obd-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 968px) {
    .obd-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.obd-hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--obd-text-primary);
    letter-spacing: -1px;
}

.obd-hero-left h1 span {
    color: var(--obd-red);
}

.obd-hero-subtitle {
    font-size: 19px;
    color: var(--obd-text-secondary);
    margin-bottom: 35px;
    font-weight: 400;
}

.obd-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.obd-hero-bullets li {
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: var(--obd-text-secondary);
}

.obd-hero-bullets li::before {
    content: '→';
    color: var(--obd-red);
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.obd-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.obd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.obd-btn-primary {
    background-color: var(--obd-red);
    color: #ffffff !important;
    border: none;
}

.obd-btn-primary:hover {
    background-color: var(--obd-red-hover);
    transform: translateY(-1px);
}

.obd-btn-secondary {
    background-color: var(--obd-bg-white);
    color: var(--obd-text-primary) !important;
    border: 1px solid var(--obd-border);
}

.obd-btn-secondary:hover {
    background-color: var(--obd-bg-light);
    border-color: var(--obd-text-primary);
    transform: translateY(-1px);
}

.obd-btn-icon {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

/* Caseta Configurator Minimalist */
.obd-config-box {
    position: relative;
    background-color: var(--obd-bg-white);
    border: 1px solid var(--obd-border);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--obd-shadow);
    overflow: hidden;
}

.obd-config-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--obd-text-primary);
}

.obd-form-group {
    margin-bottom: 16px;
}

.obd-form-group select, .obd-form-group input {
    width: 100%;
    padding: 14px;
    background-color: var(--obd-bg-light);
    border: 1px solid var(--obd-border);
    color: var(--obd-text-primary);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.obd-form-group select:focus, .obd-form-group input:focus {
    border-color: var(--obd-red);
    background-color: var(--obd-bg-white);
}

.obd-config-submit {
    width: 100%;
    margin-top: 10px;
}

/* Mască de Atenționare Configurator */
.obd-config-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    z-index: 10;
}

.obd-config-overlay-card {
    text-align: center;
    background: var(--obd-bg-white);
    border: 1px solid var(--obd-border);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 280px;
}

.obd-config-overlay-card .obd-overlay-title {
    margin: 0 0 8px 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--obd-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.obd-config-overlay-card .obd-overlay-desc {
    margin: 0;
    font-size: 13px;
    color: var(--obd-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   [SECȚIUNEA 2: VALORI / ECOSYSTEM BADGES]
   ========================================================================== */
.obd-badges-section {
    padding-top: 0;
    padding-bottom: 40px;
    position: relative;
    z-index: 11;
}

.obd-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -30px;
    background: var(--obd-bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid var(--obd-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    position: relative;
}

.obd-badge-item { 
    display: flex; 
    gap: 15px; 
    align-items: flex-start; 
}

.obd-badge-icon { 
    flex-shrink: 0; 
    width: 42px; 
    height: 42px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--obd-red); 
    background: rgba(168, 28, 28, 0.07); 
    padding: 9px; 
    border-radius: 10px; 
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
}

.obd-badge-item:hover .obd-badge-icon { 
    transform: scale(1.1); 
}

.obd-badge-content h4 { 
    margin: 0 0 6px 0; 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--obd-text-primary); 
}

.obd-badge-content p { 
    margin: 0; 
    font-size: 13.5px; 
    color: var(--obd-text-secondary); 
    line-height: 1.4; 
}

@media (max-width: 1024px) { 
    .obd-badges-grid { 
        grid-template-columns: repeat(2, 1fr); 
        margin-top: 20px; 
        gap: 24px; 
    } 
}

@media (max-width: 576px) { 
    .obd-badges-grid { 
        grid-template-columns: 1fr; 
        padding: 25px 20px; 
    } 
}

/* ==========================================================================
   [SECȚIUNEA 3: SERVICII CALIBRARE CHIPTUNING]
   ========================================================================== */
.obd-services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.obd-service-card { 
    background-color: var(--obd-bg-light); 
    border: 1px solid var(--obd-border); 
    border-radius: 12px; 
    padding: 35px; 
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; 
}

.obd-service-card:hover { 
    background-color: var(--obd-bg-white); 
    border-color: var(--obd-red); 
    box-shadow: var(--obd-shadow); 
}

.obd-service-card svg.obd-service-icon { 
    width: 36px; 
    height: 36px; 
    stroke: var(--obd-red); 
    fill: none; 
    margin-bottom: 20px; 
    display: block;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.obd-service-card:hover svg.obd-service-icon {
    transform: scale(1.08);
}

.obd-service-card h3 { 
    font-size: 20px; 
    margin: 0 0 12px 0; 
    font-weight: 700; 
    color: var(--obd-text-primary); 
}

.obd-service-card p { 
    font-size: 14px; 
    color: var(--obd-text-secondary); 
    margin: 0; 
    line-height: 1.5;
}

@media (max-width: 968px) { 
    .obd-services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 24px;
    } 
}

@media (max-width: 640px) { 
    .obd-services-grid { 
        grid-template-columns: 1fr; 
    } 
}

/* ==========================================================================
   [SECȚIUNEA 3.5: BANNER CTA INTERMEDIAR RAPID]
   ========================================================================== */
.obd-cta-banner-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.obd-quick-cta-banner { 
    background: linear-gradient(135deg, var(--obd-text-primary) 0%, #1F2937 100%); 
    border-left: 5px solid var(--obd-red); 
    border-radius: 12px; 
    padding: 40px 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    box-shadow: var(--obd-shadow); 
}

.obd-quick-cta-text h3 { 
    color: #ffffff; 
    font-size: 24px; 
    font-weight: 700; 
    margin: 0 0 8px 0; 
    line-height: 1.3;
}

.obd-quick-cta-text p { 
    color: #9CA3AF; 
    font-size: 15px; 
    margin: 0; 
    line-height: 1.5;
}

@media (max-width: 868px) {
    .obd-cta-banner-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }
    
    .obd-quick-cta-banner { 
        flex-direction: column; 
        text-align: center; 
        gap: 25px; 
        padding: 35px 25px; 
        border-left: none;
        border-top: 5px solid var(--obd-red); 
    }
    
    .obd-quick-cta-banner .obd-btn {
        width: 100%; 
        max-width: 300px;
    }
}

/* ==========================================================================
   [SECȚIUNEA 4: BAZĂ DATE FIȘIERE & MAPPACKS]
   ========================================================================== */
.obd-files-section {
    padding-top: 20px;
    padding-bottom: 60px;
}

.obd-files-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}

.obd-file-card { 
    background: var(--obd-bg-white); 
    border: 1px solid var(--obd-border); 
    border-radius: 12px; 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: flex-start; 
    transition: box-shadow 0.25s ease, border-color 0.25s ease; 
}

.obd-file-card:hover { 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04); 
    border-color: rgba(168, 28, 28, 0.2); 
}

.obd-db-header { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    margin-bottom: 18px; 
}

.obd-db-icon-box { 
    width: 48px; 
    height: 48px; 
    background: var(--obd-text-primary); 
    color: #ffffff; 
    padding: 11px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.obd-db-icon-box svg {
    width: 22px;
    height: 22px;
}

.obd-file-card:last-child .obd-db-icon-box { 
    background: var(--obd-red); 
}

.obd-db-header h3 { 
    font-size: 20px; 
    font-weight: 700; 
    color: var(--obd-text-primary); 
    margin: 0; 
}

.obd-db-header h3 span { 
    display: block; 
    font-size: 14px; 
    color: var(--obd-text-secondary); 
    font-weight: 400; 
    margin-top: 2px; 
}

.obd-file-card p { 
    font-size: 15px; 
    color: var(--obd-text-secondary); 
    line-height: 1.6; 
    margin: 0 0 30px 0; 
}

.obd-cta-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    padding: 14px 28px; 
    font-size: 15px; 
    font-weight: 600; 
    text-decoration: none; 
    border-radius: 50px; 
    transition: background-color 0.2s ease, box-shadow 0.2s ease; 
    cursor: pointer; 
}

.obd-cta-btn .arrow-icon { 
    width: 16px; 
    height: 16px; 
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1); 
    fill: none; 
    stroke: currentColor; 
}

.obd-btn-dark { 
    background-color: var(--obd-text-primary); 
    color: #ffffff !important; 
}

.obd-btn-dark:hover { 
    background-color: #000000; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); 
}

.obd-btn-red { 
    background-color: var(--obd-red); 
    color: #ffffff !important; 
}

.obd-btn-red:hover { 
    background-color: var(--obd-red-hover); 
    box-shadow: 0 8px 20px rgba(168, 28, 28, 0.2); 
}

.obd-cta-btn:hover .arrow-icon { 
    transform: translateX(5px); 
}

@media (max-width: 968px) { 
    .obd-files-section {
        padding-top: 10px;
        padding-bottom: 40px;
    }
    .obd-files-grid { 
        grid-template-columns: 1fr; 
        gap: 24px;
    } 
}

@media (max-width: 576px) { 
    .obd-cta-btn { 
        width: 100%; 
        justify-content: center; 
    } 
    .obd-file-card { 
        padding: 25px; 
    } 
}

/* ==========================================================================
   [SECȚIUNEA 5: JURNAL TEHNIC (BLOG) - DESIGN GEOMETRIC ASIMETRIC]
   ========================================================================== */
.obd-blog-section {
    position: relative;
    padding-top: 20px;
    padding-bottom: 60px;
    background: transparent; 
    border: none !important;  
}

.obd-blog-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--obd-bg-light);
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
    z-index: -1; 
}

.obd-blog-header-block {
    margin-bottom: 45px;
    text-align: left;
}

.obd-blog-section-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--obd-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.obd-blog-header-block .obd-section-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: var(--obd-text-primary);
    letter-spacing: -0.5px;
}

.obd-blog-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    position: relative;
    z-index: 2; 
}

.obd-blog-card { 
    background: var(--obd-bg-white); 
    border: 1px solid var(--obd-border); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease; 
    display: flex; 
    flex-direction: column;
    text-decoration: none; 
}

.obd-blog-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); 
    border-color: rgba(168, 28, 28, 0.2); 
}

.obd-blog-image-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--obd-text-primary);
}

.obd-blog-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.obd-blog-card:hover .obd-blog-image-box img {
    transform: scale(1.05); 
}

.obd-blog-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--obd-text-primary) 0%, #1F2937 100%);
    color: rgba(255, 255, 255, 0.2);
}

.obd-blog-image-fallback svg {
    width: 48px;
    height: 48px;
}

.obd-blog-meta-wrapper { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    padding: 25px 25px 0 25px; 
}

.obd-blog-meta-icon { 
    width: 18px; 
    height: 18px; 
    color: var(--obd-red); 
    display: flex; 
    align-items: center; 
    flex-shrink: 0;
}

.obd-blog-meta { 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--obd-red); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.obd-blog-content { 
    padding: 12px 25px 25px 25px; 
    flex-grow: 1; 
}

.obd-blog-content h3 { 
    font-size: 18px; 
    margin: 0 0 10px 0; 
    font-weight: 700; 
    line-height: 1.4; 
    color: var(--obd-text-primary); 
    transition: color 0.2s ease;
}

.obd-blog-card:hover .obd-blog-content h3 {
    color: var(--obd-red); 
}

.obd-blog-content p { 
    font-size: 13.5px; 
    color: var(--obd-text-secondary); 
    margin: 0; 
    line-height: 1.5; 
}

@media (max-width: 968px) { 
    .obd-blog-section { padding-top: 80px; padding-bottom: 80px; }
    .obd-blog-section::before { clip-path: polygon(0 25px, 100% 0, 100% calc(100% - 25px), 0 100%); }
    .obd-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } 
}

@media (max-width: 768px) {
    .obd-blog-grid { grid-template-columns: 1fr; } 
    .obd-blog-image-box { height: 220px; }
    .obd-blog-header-block { margin-bottom: 35px; }
}

/* ==========================================================================
   [SECȚIUNEA 6: ÎNTREBĂRI FRECVENTE (FAQ)]
   ========================================================================== */
.obd-faq-section {
    background-color: var(--obd-bg-white);
    padding-top: 20px;
    padding-bottom: 40px;
    border: none !important; 
}

.obd-section-title {
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.obd-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px; 
}

.obd-faq-block {
    background: transparent;
    transition: transform 0.2s ease;
}

.obd-faq-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.obd-faq-icon {
    width: 22px;
    height: 22px;
    stroke: var(--obd-red);
    fill: none;
    flex-shrink: 0; 
    margin-top: 2px; 
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.obd-faq-block:hover .obd-faq-icon {
    transform: translateY(-2px);
}

.obd-faq-block h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--obd-text-primary);
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.obd-faq-block:hover h3 {
    color: var(--obd-red);
}

.obd-faq-block p {
    font-size: 14.5px;
    color: var(--obd-text-secondary);
    line-height: 1.6;
    margin: 0;
    padding-left: 36px; 
}

@media (max-width: 968px) {
    .obd-faq-section { padding-top: 70px; padding-bottom: 70px; }
    .obd-faq-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .obd-faq-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 480px) {
    .obd-faq-header { gap: 10px; }
    .obd-faq-block p { padding-left: 0; margin-top: 8px; }
}

/* ==========================================================================
   [SECȚIUNEA 7: REȚEA DEALERI & PARTENERI]
   ========================================================================== */
.obd-dealer-box { 
   
    border-radius: 16px; 
    padding: 50px; 
    border: 1px solid var(--obd-border); 
    border-left: 6px solid var(--obd-red);   
    border-right: 6px solid var(--obd-red); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); 
}

.obd-dealer-lead {
    color: var(--obd-text-secondary); 
    max-width: 800px; 
    font-size: 15px; 
    line-height: 1.6;
}

.obd-dealer-steps { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    margin: 50px 0; 
}

.obd-step-card { 
    background: transparent; 
    padding: 0; 
    border: none; 
}

@media (min-width: 769px) {
    .obd-step-card.obd-step-sep {
        border-left: 1px dashed var(--obd-border);
        padding-left: 40px;
    }
}

.obd-step-num { 
    font-size: 40px; 
    font-weight: 900; 
    color: rgba(168, 28, 28, 0.1); 
    line-height: 1; 
    margin-bottom: 10px; 
}

.obd-step-card h4 {
    margin: 0 0 10px 0; 
    font-weight: 700; 
    font-size: 17px; 
    color: var(--obd-text-primary);
}

.obd-step-card p {
    margin: 0; 
    font-size: 14px; 
    color: var(--obd-text-secondary); 
    line-height: 1.6;
}

.obd-table-title {
    font-size: 18px; 
    font-weight: 700; 
    margin: 40px 0 15px 0; 
    color: var(--obd-text-primary);
}

.obd-table-wrapper { 
    overflow-x: auto; 
    border-radius: 8px; 
    border: 1px solid var(--obd-border); 
}

.obd-table { 
    width: 100%; 
    border-collapse: collapse; 
    text-align: left; 
}

.obd-table thead tr {
    background: #fafafa; 
    border-bottom: 1px solid var(--obd-border);
}

.obd-table th { 
    padding: 16px 20px; 
    font-weight: 700; 
    color: var(--obd-text-primary); 
    font-size: 14px; 
}

.obd-table tbody tr {
    border-bottom: 1px solid var(--obd-border);
}

.obd-table tbody tr:last-child {
    border-bottom: none;
}

.obd-table td { 
    padding: 16px 20px; 
    font-size: 14px; 
    color: var(--obd-text-secondary); 
}

.obd-table td strong {
    color: var(--obd-text-primary);
}

.obd-table-cell-price {
    text-align: right; 
    background: #fdfdfd;
}

.obd-table-price-red {
    font-weight: 700; 
    color: var(--obd-red);
}

.obd-table-price-dark {
    font-weight: 700; 
    color: var(--obd-text-primary);
}

.obd-table-note {
    margin-top: 20px; 
    font-size: 13px; 
    color: var(--obd-text-secondary); 
    font-style: italic;
}

@media (max-width: 768px) { 
    .obd-dealer-steps { grid-template-columns: 1fr; gap: 30px; margin: 40px 0; } 
    .obd-dealer-box { padding: 40px 20px; }
    .obd-step-card.obd-step-sep { padding-left: 0; }
}

/* ==========================================================================
   SECȚIUNE 8 - STILURI ȘTIRI & ARTICOLE (Versiunea 1.3)
   ========================================================================== */


.obd-section-tag-v2 {
    font-size: 11px;
    font-weight: 800;
    color: var(--obd-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.obd-section-subtitle-v2 {
    padding-left: 20px; 
    color: var(--obd-text-secondary);
    margin: 6px 0 0 0;
    font-size: 15px;
    line-height: 1.5;
}

.obd-blog-grid-v2 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
}

.obd-blog-card-v2 { 
    background: var(--obd-bg-white); 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid var(--obd-border); 
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease; 
    box-shadow: var(--obd-shadow);
}

.obd-card-link-wrapper-v2 { 
    text-decoration: none !important; 
    color: inherit; 
    display: block;
}

.obd-blog-card-v2:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.05); 
    border-color: var(--obd-red);
}

.obd-blog-thumb-v2 { 
    height: 220px; 
    background-size: cover; 
    background-position: center; 
    background-color: var(--obd-bg-light);
    border-bottom: 1px solid var(--obd-border);
}

/* Stil elegant în caz că articolul nu are imagine încărcată */
.obd-thumb-fallback-v2 {
    background: linear-gradient(135deg, var(--obd-text-primary) 0%, #1F2937 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.obd-fallback-icon {
    color: rgba(255, 255, 255, 0.15);
    font-size: 42px;
}

.obd-blog-content-v2 { 
    padding: 25px; 
}

.obd-blog-date-v2 { 
    color: var(--obd-red); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
}

.obd-blog-content-v2 h3 { 
    margin: 0 0 12px 0; 
    font-weight: 700; 
    color: var(--obd-text-primary); 
    line-height: 1.4; 
    font-size: 18px;
}

.obd-blog-content-v2 p { 
    color: var(--obd-text-secondary); 
    margin-bottom: 0; 
    line-height: 1.5; 
    font-size: 14px;
}

.obd-no-posts-container {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    background: var(--obd-bg-light);
    border-radius: 8px;
    border: 1px dashed var(--obd-border);
}

.obd-no-posts {
    color: var(--obd-text-secondary);
    font-style: italic;
    margin: 0;
}
/* ==========================================================================
   [SECȚIUNEA 9: FORMULAR RAPID DE CONTACT FINAL]
   ========================================================================== */

.obd-contact-section { background: var(--obd-bg-light); border-top: 1px solid var(--obd-border); border-bottom: 1px solid var(--obd-border); }

.obd-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }

.obd-contact-info h3 { font-size: 26px; font-weight: 700; margin: 0 0 15px 0; }

.obd-contact-info p { color: var(--obd-text-secondary); font-size: 15px; margin-bottom: 30px; }

.obd-contact-method { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }

.obd-contact-method-icon { width: 44px; height: 44px; background: var(--obd-bg-white); border: 1px solid var(--obd-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--obd-red); padding: 11px; flex-shrink: 0; }

.obd-contact-method-text h4 { margin: 0; font-size: 14px; color: var(--obd-text-secondary); font-weight: 400; }

.obd-contact-method-text p { margin: 2px 0 0 0; font-size: 16px; font-weight: 600; color: var(--obd-text-primary); }



.obd-contact-form-card { background: var(--obd-bg-white); border: 1px solid var(--obd-border); border-radius: 16px; padding: 40px; box-shadow: var(--obd-shadow); }

.obd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.obd-contact-form-card textarea { width: 100%; height: 120px; padding: 14px; background-color: var(--obd-bg-light); border: 1px solid var(--obd-border); color: var(--obd-text-primary); border-radius: 8px; font-size: 14px; outline: none; transition: border-color 0.2s ease; resize: none; font-family: var(--obd-font); }

.obd-contact-form-card textarea:focus { border-color: var(--obd-red); background-color: var(--obd-bg-white); }



@media (max-width: 868px) {

    .obd-contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .obd-form-row { grid-template-columns: 1fr; gap: 16px; }

    .obd-contact-form-card { padding: 25px; }

}

/* ==========================================================================
   [SECȚIUNEA 10: SOCIAL MEDIA & SUBSOL (FOOTER)]
   ========================================================================== */

.obd-social-icons { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-top: 30px; 
}

.obd-social-link { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--obd-bg-light);
    border: 1px solid var(--obd-border);
    color: var(--obd-text-secondary); 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    text-decoration: none !important; 
}

.obd-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor; 
    transition: transform 0.25s ease;
}

.obd-social-link:hover { 
    color: #ffffff !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.obd-social-link:hover svg {
    transform: scale(1.05);
}

.obd-social-link.fb-icon:hover { background-color: #1877F2; }
.obd-social-link.ig-icon:hover { background-color: #E1306C; }
.obd-social-link.yt-icon:hover { background-color: #FF0000; }
.obd-social-link.wa-icon:hover { background-color: #25D366; }


/* ==========================================================================
   [SECȚIUNEA 11: HEADER CONTACT HOOK v1.4 - ACCENTUAT]
   ========================================================================== */

.obd-header-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px; /* Am mărit puțin distanța față de ultimul element */
    font-family: var(--obd-font), sans-serif;
}

/* Separatorul vertical */
.obd-contact-separator {
    color: var(--obd-border);
    font-weight: 300;
    font-size: 16px;
    user-select: none;
}

/* Link-ul principal al numărului de telefon */
.obd-contact-phone-link {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: transform 0.2s ease;
}

/* Eticheta "Telefon:" - text secundar discret */
.obd-contact-label {
    color: var(--obd-text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Numărul de telefon - ROȘU BRAND, BOLD și MĂRIT */
.obd-contact-number {
    color: var(--obd-red) !important; /* Forțăm utilizarea roșului de brand */
    font-size: 16px; /* Mărit de la 15px pentru impact vizual imediat */
    font-weight: 800; /* Extra-bold pentru a sări în ochi instant */
    letter-spacing: -0.1px;
    background-color: rgba(219, 39, 119, 0.05); /* Un fundal roșu extrem de discret (5% opacitate) pentru text-highlight */
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecte la Hover intense și profesionale */
.obd-contact-phone-link:hover .obd-contact-number {
    background-color: var(--obd-red); /* Inversează culorile la hover */
    color: #ffffff !important; /* Textul devine alb pe fundalul roșu */
    box-shadow: 0 4px 12px rgba(219, 39, 119, 0.25); /* Efect de umbră fină (glow) roșie */
}

.obd-contact-phone-link:hover {
    transform: translateY(-1px); /* Ridicare discretă a întregului element */
}

/* Receptivitate pentru ecrane mici (Mobile & Tabletă) */
@media (max-width: 768px) {
    .obd-header-contact {
        margin-left: 8px;
        gap: 0px;
    }
    
    .obd-contact-separator,
    .obd-contact-label {
        display: none; /* Ascundem elementele secundare pe mobil */
    }
    
    /* Pe mobil transformăm numărul într-un buton CTA roșu complet plin */
    .obd-contact-number {
        font-size: 14px;
        background-color: var(--obd-red);
        color: #ffffff !important;
        padding: 8px 16px;
        border-radius: 6px;
        font-weight: 700;
        box-shadow: 0 2px 6px rgba(219, 39, 119, 0.2);
    }
    
    .obd-contact-phone-link:hover .obd-contact-number {
        background-color: #b81d56; /* O nuanță de roșu ușor mai închisă la atingere pe mobil */
    }
}

/* ==========================================================================
   SECTIUNE CONTACT - INTEGRARE NATIVĂ (v1.1)
   ========================================================================== */

.contact-landing-wrapper {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    /* Preia automat fontul setat global în GeneratePress */
    font-family: inherit; 
    color: inherit;
}

/* Antetul paginii */
.contact-main-header {
    text-align: center;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main-header h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: inherit; /* Moștenește stilul de titlu din landing */
}

.contact-main-header p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85; /* Se adaptează indiferent dacă fundalul e deschis sau închis */
}

/* Structură Grid adaptabilă */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-split-layout {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* Spațiul dedicat Formularului (CF7) */
.contact-form-area {
    /* Nu forțăm fundal, folosește fundalul secțiunii din landing */
    display: flex;
    flex-direction: column;
}

/* Aliniere elemente formular la design-ul general al input-urilor tale */
.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area textarea {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    border: 1px solid currentColor;
    opacity: 0.7;
    background: transparent;
    color: inherit;
    padding: 10px 14px;
    border-radius: 4px;
}

/* Zona de text și blocuri informative din dreapta */
.contact-sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-info-block ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.contact-info-block li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.community-thanks {
    font-weight: 600;
    opacity: 0.9;
}

/* Link-uri Social Media integrate curat */
.contact-social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-link-item {
    font-weight: 700;
    text-decoration: underline;
    color: inherit;
    transition: opacity 0.2s ease;
}

.social-link-item:hover {
    opacity: 0.7;
}

/* Textul de confidențialitate de la subsol */
.contact-privacy-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid currentColor;
    opacity: 0.6;
    font-size: 0.95rem;
}