/**
 * DVVB Custom Widgets Styles
 * Tài Chính Hưng Thịnh - Brown & Gold Theme
 *
 * @package Astra Child
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Variables - Brown & Gold Color Scheme
   ========================================================================== */
:root {
    /* Primary Colors - Brown */
    --dvvb-primary: #7b4a12;
    --dvvb-primary-dark: #5a3710;
    --dvvb-primary-light: #996b2f;

    /* Secondary Colors - Gold */
    --dvvb-secondary: #d4af37;
    --dvvb-secondary-light: #f6d58c;
    --dvvb-accent: #c9a227;

    /* Text Colors */
    --dvvb-text: #2c2c2c;
    --dvvb-text-light: #666666;

    /* Background Colors */
    --dvvb-background-light: #faf8f5;
    --dvvb-background-dark: #3d2a0f;
    --dvvb-white: #ffffff;
    --dvvb-border: #e8e0d5;

    /* Effects */
    --dvvb-shadow: 0 4px 20px rgba(123, 74, 18, 0.1);
    --dvvb-shadow-hover: 0 8px 30px rgba(123, 74, 18, 0.2);
    --dvvb-shadow-gold: 0 4px 15px rgba(212, 175, 55, 0.3);

    /* Border Radius */
    --dvvb-radius: 12px;
    --dvvb-radius-sm: 8px;
    --dvvb-radius-lg: 20px;

    /* Transitions */
    --dvvb-transition: all 0.3s ease;

    /* Layout */
    --dvvb-container-width: 1240px;
    --dvvb-container-padding: 20px;
}

/* ==========================================================================
   Container System - Full Width Background, Centered Content
   ========================================================================== */
.dvvb-container {
    width: 100%;
    max-width: var(--dvvb-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--dvvb-container-padding);
    padding-right: var(--dvvb-container-padding);
    box-sizing: border-box;
}

/* ==========================================================================
   Common Section Styles - Đồng bộ cho tất cả widgets
   ========================================================================== */

/* Section Header */
.dvvb-section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Subtitle Badge - Gold accent */
.dvvb-section-subtitle {
    display: inline-block;
    color: var(--dvvb-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(123, 74, 18, 0.08));
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Main Title - Brown primary */
.dvvb-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
    line-height: 1.3;
}

/* Description - Subtle gray */
.dvvb-section-description {
    font-size: 17px;
    color: var(--dvvb-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Card Title - Brown primary */
.dvvb-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dvvb-primary);
    margin: 0 0 10px;
    line-height: 1.4;
}

/* Card Description */
.dvvb-card-desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Icon Circle - Gold gradient */
.dvvb-icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--dvvb-transition);
    overflow: hidden;
    flex-shrink: 0;
}

.dvvb-icon-circle i,
.dvvb-icon-circle svg {
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    color: var(--dvvb-primary-dark);
    line-height: 1;
}

/* Standard Card */
.dvvb-card {
    background: var(--dvvb-white);
    border-radius: var(--dvvb-radius);
    padding: 28px 24px;
    border: 1px solid rgba(232, 224, 213, 0.6);
    box-shadow: 0 2px 15px rgba(123, 74, 18, 0.05);
    transition: var(--dvvb-transition);
}

.dvvb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 74, 18, 0.1);
    border-color: var(--dvvb-secondary);
}

/* Section Padding */
.dvvb-section {
    padding: 80px 0;
}

/* Section Inner Container */
.dvvb-section__inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

/* Section Backgrounds */
.dvvb-section--light {
    background: var(--dvvb-background-light);
}

.dvvb-section--gradient {
    background: linear-gradient(180deg, #faf8f5 0%, #f5ead8 100%);
}

.dvvb-section--dark {
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
}

.dvvb-section--dark .dvvb-section-subtitle {
    color: var(--dvvb-secondary);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.dvvb-section--dark .dvvb-section-title {
    color: var(--dvvb-secondary-light);
}

.dvvb-section--dark .dvvb-section-description {
    color: rgba(246, 213, 140, 0.85);
}

/* Grid System */
.dvvb-grid--2,
.dvvb-grid--3,
.dvvb-grid--4 {
    display: grid;
    gap: 30px;
}

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

@media (max-width: 992px) {
    .dvvb-grid--3,
    .dvvb-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dvvb-grid--2,
    .dvvb-grid--3,
    .dvvb-grid--4 { grid-template-columns: 1fr; }

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

/* ==========================================================================
   Buttons - Gold & Brown Theme
   ========================================================================== */
.dvvb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--dvvb-radius-sm);
    text-decoration: none !important;
    transition: var(--dvvb-transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.dvvb-btn:hover,
.dvvb-btn:focus,
.dvvb-btn:active {
    text-decoration: none !important;
}

.dvvb-btn--primary {
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    color: var(--dvvb-primary-dark);
    box-shadow: var(--dvvb-shadow-gold);
}

.dvvb-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--dvvb-primary-dark);
    background: linear-gradient(135deg, var(--dvvb-secondary-light), var(--dvvb-secondary));
}

.dvvb-btn--secondary {
    background: var(--dvvb-white);
    color: var(--dvvb-primary);
    box-shadow: var(--dvvb-shadow);
    border-color: var(--dvvb-border);
}

.dvvb-btn--secondary:hover {
    background: var(--dvvb-primary);
    color: var(--dvvb-secondary-light);
    border-color: var(--dvvb-primary);
}

.dvvb-btn--outline {
    background: transparent;
    border-color: var(--dvvb-secondary-light);
    color: var(--dvvb-secondary-light);
}

.dvvb-btn--outline:hover {
    background: var(--dvvb-secondary-light);
    color: var(--dvvb-primary-dark);
}

.dvvb-btn--outline-light {
    background: transparent;
    border-color: rgba(246, 213, 140, 0.5);
    color: var(--dvvb-secondary-light);
}

.dvvb-btn--outline-light:hover {
    background: var(--dvvb-secondary-light);
    color: var(--dvvb-primary-dark);
    border-color: var(--dvvb-secondary-light);
}

/* ==========================================================================
   Hero Widget - Brown & Gold
   ========================================================================== */
.dvvb-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.dvvb-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.dvvb-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: var(--dvvb-container-width);
    padding: 40px var(--dvvb-container-padding);
    margin: 0 auto;
}

.dvvb-hero__content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.dvvb-hero__subtitle {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--dvvb-secondary-light);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.dvvb-hero__title {
    font-size: 52px;
    font-weight: 800;
    color: var(--dvvb-secondary-light);
    margin: 0 0 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dvvb-hero__description {
    font-size: 20px;
    color: rgba(246, 213, 140, 0.9);
    margin: 0 0 35px;
    line-height: 1.7;
}

.dvvb-hero__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.dvvb-hero__trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.dvvb-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(246, 213, 140, 0.85);
    font-size: 14px;
}

.dvvb-hero__trust-item i {
    color: var(--dvvb-secondary);
}

@media (max-width: 768px) {
    .dvvb-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .dvvb-hero__content {
        text-align: center;
        padding: 30px 20px;
    }

    .dvvb-hero__subtitle {
        font-size: 11px;
        padding: 8px 16px;
        letter-spacing: 1.5px;
    }

    .dvvb-hero__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .dvvb-hero__description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* Buttons on same row */
    .dvvb-hero__buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        margin-bottom: 30px;
    }

    .dvvb-hero__buttons .dvvb-btn {
        flex: 1;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Trust badges on same row */
    .dvvb-hero__trust {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: center;
    }

    .dvvb-hero__trust-item {
        font-size: 11px;
        gap: 4px;
        flex-direction: column;
        text-align: center;
    }

    .dvvb-hero__trust-item i {
        font-size: 16px;
    }
}

/* ==========================================================================
   Service Card Widget - Brown & Gold
   ========================================================================== */
.dvvb-service-card {
    background: var(--svc-card-bg, var(--dvvb-white));
    border-radius: var(--dvvb-radius);
    padding: 35px 30px;
    transition: var(--dvvb-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--dvvb-border);
}

.dvvb-service-card--elevated {
    box-shadow: var(--dvvb-shadow);
    border: none;
}

.dvvb-service-card--elevated:hover {
    transform: translateY(-8px);
    box-shadow: var(--dvvb-shadow-hover);
}

.dvvb-service-card--bordered {
    border: 2px solid var(--dvvb-border);
}

.dvvb-service-card--bordered:hover {
    border-color: var(--dvvb-secondary);
}

.dvvb-service-card--gradient {
    background: linear-gradient(135deg, var(--dvvb-white), var(--dvvb-background-light));
    border: 1px solid var(--dvvb-border);
}

/* Minimal/Clean Style */
.dvvb-service-card--minimal {
    background: var(--dvvb-white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: none;
    padding: 30px;
}

.dvvb-service-card--minimal:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dvvb-service-card--minimal .dvvb-service-card__icon {
    width: auto;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.dvvb-service-card--minimal .dvvb-service-card__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.dvvb-service-card--minimal .dvvb-service-card__emoji {
    font-size: 42px;
    line-height: 1;
}

.dvvb-service-card--minimal .dvvb-service-card__title {
    color: var(--dvvb-text);
    font-size: 20px;
    margin-bottom: 12px;
}

.dvvb-service-card--minimal .dvvb-service-card__description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.dvvb-service-card--minimal .dvvb-service-card__link {
    color: #2563eb;
    font-size: 14px;
}

.dvvb-service-card--minimal .dvvb-service-card__link:hover {
    color: #1d4ed8;
}

.dvvb-service-card--minimal .dvvb-service-card__features {
    display: none;
}

.dvvb-service-card--hover:hover .dvvb-service-card__icon {
    transform: scale(1.1);
}

.dvvb-service-card--minimal.dvvb-service-card--hover:hover .dvvb-service-card__icon {
    transform: none;
}

.dvvb-service-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--svc-icon-bg, linear-gradient(135deg, rgba(123, 74, 18, 0.1), rgba(212, 175, 55, 0.15)));
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--dvvb-transition);
    border: 2px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.dvvb-service-card__icon--image {
    background: none;
    border: none;
}

.dvvb-service-card__emoji {
    font-size: 24px;
    line-height: 1;
}

.dvvb-service-card__icon i,
.dvvb-service-card__icon svg {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
    color: var(--dvvb-primary);
    line-height: 1;
}

/* Service Card Icon Size Variants */
.dvvb-service-card--icon-small .dvvb-service-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
}
.dvvb-service-card--icon-small .dvvb-service-card__icon i,
.dvvb-service-card--icon-small .dvvb-service-card__icon svg {
    font-size: 17px !important;
    width: 17px !important;
    height: 17px !important;
}
.dvvb-service-card--icon-small .dvvb-service-card__emoji {
    font-size: 20px;
}

.dvvb-service-card--icon-medium .dvvb-service-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    max-width: 56px;
}
.dvvb-service-card--icon-medium .dvvb-service-card__icon i,
.dvvb-service-card--icon-medium .dvvb-service-card__icon svg {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
}
.dvvb-service-card--icon-medium .dvvb-service-card__emoji {
    font-size: 24px;
}

.dvvb-service-card--icon-large .dvvb-service-card__icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    max-width: 70px;
}
.dvvb-service-card--icon-large .dvvb-service-card__icon i,
.dvvb-service-card--icon-large .dvvb-service-card__icon svg {
    font-size: 28px !important;
    width: 28px !important;
    height: 28px !important;
}
.dvvb-service-card--icon-large .dvvb-service-card__emoji {
    font-size: 32px;
}

.dvvb-service-card--icon-xlarge .dvvb-service-card__icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    max-width: 90px;
}
.dvvb-service-card--icon-xlarge .dvvb-service-card__icon i,
.dvvb-service-card--icon-xlarge .dvvb-service-card__icon svg {
    font-size: 36px !important;
    width: 36px !important;
    height: 36px !important;
}
.dvvb-service-card--icon-xlarge .dvvb-service-card__emoji {
    font-size: 42px;
}

.dvvb-service-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
}

.dvvb-service-card__description {
    font-size: 15px;
    color: var(--dvvb-text-light);
    line-height: 1.7;
    margin: 0 0 20px;
    flex-grow: 1;
}

.dvvb-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.dvvb-service-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--dvvb-text);
    border-bottom: 1px solid var(--dvvb-border);
}

.dvvb-service-card__features li:last-child {
    border-bottom: none;
}

.dvvb-service-card__features li i {
    color: var(--dvvb-secondary);
    font-size: 12px;
}

.dvvb-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dvvb-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--dvvb-transition);
    margin-top: auto;
}

.dvvb-service-card__link:hover {
    color: var(--dvvb-secondary);
}

.dvvb-service-card__link i {
    transition: var(--dvvb-transition);
}

.dvvb-service-card__link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Services Grid Widget
   ========================================================================== */
.dvvb-services {
    padding: 80px 0;
    width: 100%;
}

.dvvb-services__inner {
    width: 100%;
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

.dvvb-services__grid {
    display: grid;
    gap: 30px;
}

/* ==========================================================================
   Why Choose Us Widget - Brown & Gold
   ========================================================================== */
.dvvb-why-choose {
    padding: 80px 0;
    width: 100%;
}

.dvvb-why-choose__inner {
    width: 100%;
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

.dvvb-why-choose--light {
    background: var(--wcu-section-bg, var(--dvvb-background-light));
}

.dvvb-why-choose--dark {
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
}

.dvvb-why-choose--dark .dvvb-section-subtitle {
    color: var(--dvvb-secondary);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.dvvb-why-choose--dark .dvvb-section-title,
.dvvb-why-choose--dark .dvvb-why-choose__title {
    color: var(--dvvb-secondary-light);
}

.dvvb-why-choose--dark .dvvb-why-choose__description {
    color: rgba(246, 213, 140, 0.8);
}

.dvvb-why-choose--gradient {
    background: linear-gradient(135deg, var(--dvvb-background-light), #f5f0e8);
}

/* Grid Layout - Clean Cards */
.dvvb-why-choose__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.dvvb-why-choose__cols--3 {
    grid-template-columns: repeat(3, 1fr);
}

.dvvb-why-choose__cols--4 {
    grid-template-columns: repeat(4, 1fr);
}

.dvvb-why-choose__cols--5 {
    grid-template-columns: repeat(5, 1fr);
}

/* List Layout - Horizontal Row */
.dvvb-why-choose__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.dvvb-why-choose__list .dvvb-why-choose__item {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}

/* Item Card - Clean & Minimal Style */
.dvvb-why-choose__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--wcu-card-bg, var(--dvvb-white));
    border-radius: var(--dvvb-radius);
    box-shadow: 0 2px 20px rgba(123, 74, 18, 0.06);
    transition: var(--dvvb-transition);
    border: 1px solid rgba(232, 224, 213, 0.6);
    position: relative;
}

.dvvb-why-choose--dark .dvvb-why-choose__item {
    background: rgba(246, 213, 140, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.dvvb-why-choose__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(123, 74, 18, 0.12);
    border-color: var(--dvvb-secondary);
}

/* Icon Circle */
.dvvb-why-choose__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wcu-icon-bg, linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent)));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 18px;
    transition: var(--dvvb-transition);
    overflow: hidden;
    flex-shrink: 0;
}

.dvvb-why-choose__item:hover .dvvb-why-choose__icon {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.dvvb-why-choose__icon i,
.dvvb-why-choose__icon svg {
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    color: var(--dvvb-primary-dark);
    line-height: 1;
}

/* Icon Size Variants */
.dvvb-why-choose--icon-small .dvvb-why-choose__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
}
.dvvb-why-choose--icon-small .dvvb-why-choose__icon i,
.dvvb-why-choose--icon-small .dvvb-why-choose__icon svg {
    font-size: 17px !important;
    width: 17px !important;
    height: 17px !important;
}

.dvvb-why-choose--icon-medium .dvvb-why-choose__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
}
.dvvb-why-choose--icon-medium .dvvb-why-choose__icon i,
.dvvb-why-choose--icon-medium .dvvb-why-choose__icon svg {
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
}

.dvvb-why-choose--icon-large .dvvb-why-choose__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    max-width: 64px;
}
.dvvb-why-choose--icon-large .dvvb-why-choose__icon i,
.dvvb-why-choose--icon-large .dvvb-why-choose__icon svg {
    font-size: 26px !important;
    width: 26px !important;
    height: 26px !important;
}

.dvvb-why-choose--icon-xlarge .dvvb-why-choose__icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
}
.dvvb-why-choose--icon-xlarge .dvvb-why-choose__icon i,
.dvvb-why-choose--icon-xlarge .dvvb-why-choose__icon svg {
    font-size: 32px !important;
    width: 32px !important;
    height: 32px !important;
}

/* Content */
.dvvb-why-choose__content {
    flex: 1;
}

.dvvb-why-choose__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dvvb-primary);
    margin: 0 0 8px;
    line-height: 1.4;
}

.dvvb-why-choose__description {
    font-size: 14px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Why Choose */
@media (max-width: 1200px) {
    .dvvb-why-choose__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .dvvb-why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dvvb-why-choose__list .dvvb-why-choose__item {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .dvvb-why-choose {
        padding: 50px 0;
    }

    .dvvb-why-choose__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dvvb-why-choose__item {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }

    .dvvb-why-choose__icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        max-width: 46px;
        margin-bottom: 0;
    }

    .dvvb-why-choose__icon i,
    .dvvb-why-choose__icon svg {
        font-size: 18px !important;
        width: 18px !important;
        height: 18px !important;
    }

    .dvvb-why-choose__title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .dvvb-why-choose__description {
        font-size: 13px;
    }

    .dvvb-why-choose__list {
        flex-direction: column;
    }

    .dvvb-why-choose__list .dvvb-why-choose__item {
        max-width: 100%;
    }
}

/* ==========================================================================
   CTA Widget - Brown & Gold
   ========================================================================== */
.dvvb-cta {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.dvvb-cta__inner {
    width: 100%;
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

.dvvb-cta--gradient {
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
}

.dvvb-cta--solid {
    background: var(--dvvb-primary);
}

.dvvb-cta--image {
    background-size: cover;
    background-position: center;
}

.dvvb-cta--image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(90, 55, 16, 0.9);
}

.dvvb-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.dvvb-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dvvb-secondary-light);
    margin: 0 0 20px;
}

.dvvb-cta__description {
    font-size: 18px;
    color: rgba(246, 213, 140, 0.9);
    margin: 0 0 30px;
    line-height: 1.7;
}

.dvvb-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dvvb-cta__phone i {
    font-size: 24px;
    color: var(--dvvb-secondary);
}

.dvvb-cta__phone a {
    font-size: 28px;
    font-weight: 700;
    color: var(--dvvb-secondary-light);
    text-decoration: none;
}

.dvvb-cta__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .dvvb-cta__title { font-size: 28px; }
    .dvvb-cta__phone a { font-size: 22px; }
}

/* CTA Action Buttons - Phone & Zalo */
.dvvb-cta__action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.dvvb-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    padding: 18px 32px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Phone Button */
.dvvb-cta__btn--phone {
    background: linear-gradient(135deg, #d4af37 0%, #f6d58c 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #5a3710;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    animation: ctaPhoneShine 2s ease-in-out infinite, ctaPhonePulse 1.5s ease-in-out infinite;
}

.dvvb-cta__btn--phone i {
    font-size: 22px;
    animation: ctaPhoneRing 1s ease-in-out infinite;
}

.dvvb-cta__btn--phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: #3d2a0f;
}

/* Zalo Button */
.dvvb-cta__btn--zalo {
    background: linear-gradient(135deg, #0068ff 0%, #00a1ff 50%, #0068ff 100%);
    background-size: 200% 100%;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 104, 255, 0.4);
    animation: ctaZaloShine 2s ease-in-out infinite 0.5s, ctaZaloPulse 1.5s ease-in-out infinite 0.5s;
}

.dvvb-cta__btn--zalo svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.dvvb-cta__btn--zalo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 104, 255, 0.6);
    color: #ffffff;
}

/* Animations */
@keyframes ctaPhoneShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes ctaPhonePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6), 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

@keyframes ctaPhoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50%, 100% { transform: rotate(0deg); }
}

@keyframes ctaZaloShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes ctaZaloPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 104, 255, 0.4), 0 0 0 0 rgba(0, 104, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 104, 255, 0.6), 0 0 0 10px rgba(0, 104, 255, 0);
    }
}

@media (max-width: 576px) {
    .dvvb-cta__btn {
        font-size: 18px;
        padding: 16px 28px;
        max-width: 280px;
    }
}

/* ==========================================================================
   Contact Info Widget - Brown & Gold
   ========================================================================== */
.dvvb-contact-info {
    padding: 30px;
    background: var(--dvvb-white);
    border-radius: var(--dvvb-radius);
    box-shadow: var(--dvvb-shadow);
    border: 1px solid var(--dvvb-border);
}

.dvvb-contact-info--card {
    border: 2px solid var(--dvvb-secondary);
}

.dvvb-contact-info__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--dvvb-border);
}

.dvvb-contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dvvb-contact-info--horizontal .dvvb-contact-info__list {
    flex-direction: row;
    flex-wrap: wrap;
}

.dvvb-contact-info__item {
    display: flex;
    gap: 15px;
}

.dvvb-contact-info--horizontal .dvvb-contact-info__item {
    flex: 1;
    min-width: 200px;
}

.dvvb-contact-info__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
    overflow: hidden;
    flex-shrink: 0;
}

.dvvb-contact-info__icon i,
.dvvb-contact-info__icon svg {
    font-size: 17px !important;
    width: 17px !important;
    height: 17px !important;
    color: var(--dvvb-primary-dark);
    line-height: 1;
}

.dvvb-contact-info__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dvvb-contact-info__label {
    font-size: 12px;
    color: var(--dvvb-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.dvvb-contact-info__value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dvvb-primary);
    text-decoration: none;
    transition: var(--dvvb-transition);
}

a.dvvb-contact-info__value:hover {
    color: var(--dvvb-secondary);
}

.dvvb-contact-info__social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--dvvb-border);
}

.dvvb-contact-info__social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    color: var(--dvvb-primary-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-contact-info__social-link:hover {
    background: var(--dvvb-primary);
    color: var(--dvvb-secondary-light);
    transform: translateY(-3px);
}

.dvvb-zalo-icon {
    font-size: 12px;
    font-weight: 700;
}

.dvvb-contact-info__map {
    margin-top: 25px;
    border-radius: var(--dvvb-radius-sm);
    overflow: hidden;
    border: 1px solid var(--dvvb-border);
}

.dvvb-contact-info__map iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* ==========================================================================
   Stats Widget - Brown & Gold
   ========================================================================== */
.dvvb-stats-wrapper {
    padding: 60px 0;
    width: 100%;
}

.dvvb-stats-wrapper__inner {
    width: 100%;
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

.dvvb-stats {
    display: grid;
    gap: 30px;
}

.dvvb-stats--default .dvvb-stats__item {
    text-align: center;
    padding: 30px 20px;
}

.dvvb-stats--boxed .dvvb-stats__item {
    text-align: center;
    padding: 40px 30px;
    background: var(--dvvb-white);
    border-radius: var(--dvvb-radius);
    box-shadow: var(--dvvb-shadow);
    transition: var(--dvvb-transition);
    border: 1px solid var(--dvvb-border);
}

.dvvb-stats--boxed .dvvb-stats__item:hover {
    transform: translateY(-5px);
    border-color: var(--dvvb-secondary);
}

.dvvb-stats--minimal .dvvb-stats__item {
    text-align: center;
    padding: 20px;
    border-left: 3px solid var(--dvvb-secondary);
}

.dvvb-stats__icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dvvb-stats__icon i,
.dvvb-stats__icon svg {
    font-size: 32px !important;
    width: 32px !important;
    height: 32px !important;
    color: var(--dvvb-secondary);
    line-height: 1;
}

.dvvb-stats__number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--dvvb-primary);
}

.dvvb-stats__suffix {
    font-size: 32px;
    color: var(--dvvb-secondary);
}

.dvvb-stats__title {
    font-size: 16px;
    color: var(--dvvb-text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .dvvb-stats__number { font-size: 36px; }
    .dvvb-stats__suffix { font-size: 24px; }
}

/* ==========================================================================
   Testimonial Widget - Brown & Gold
   ========================================================================== */
.dvvb-testimonials {
    padding: 80px 0;
    width: 100%;
}

.dvvb-testimonials__inner {
    width: 100%;
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

.dvvb-testimonials__grid {
    display: grid;
    gap: 30px;
}

.dvvb-testimonial-card {
    background: var(--dvvb-white);
    border-radius: var(--dvvb-radius);
    padding: 35px;
    box-shadow: var(--dvvb-shadow);
    transition: var(--dvvb-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--dvvb-border);
}

.dvvb-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dvvb-shadow-hover);
    border-color: var(--dvvb-secondary);
}

.dvvb-testimonial-card__rating {
    margin-bottom: 20px;
}

.dvvb-testimonial-card__rating i {
    color: var(--dvvb-secondary);
    font-size: 16px;
    margin-right: 3px;
}

.dvvb-testimonial-card__content {
    position: relative;
    flex-grow: 1;
    margin-bottom: 25px;
}

.dvvb-testimonial-card__quote {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 40px;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.dvvb-testimonial-card__content p {
    font-size: 15px;
    color: var(--dvvb-text);
    line-height: 1.8;
    margin: 0;
    padding-left: 30px;
    font-style: italic;
}

.dvvb-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--dvvb-border);
}

.dvvb-testimonial-card__avatar {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--dvvb-secondary);
}

.dvvb-testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dvvb-testimonial-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
}

.dvvb-testimonial-card__avatar--placeholder i {
    font-size: 24px;
    color: var(--dvvb-primary-dark);
}

.dvvb-testimonial-card__info {
    flex: 1;
}

.dvvb-testimonial-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 4px;
}

.dvvb-testimonial-card__position {
    font-size: 13px;
    color: var(--dvvb-text-light);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .dvvb-hero,
    .dvvb-services,
    .dvvb-why-choose,
    .dvvb-cta,
    .dvvb-testimonials {
        padding: 50px 20px;
    }

    .dvvb-section-header {
        margin-bottom: 35px;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dvvb-animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.dvvb-text-primary { color: var(--dvvb-primary) !important; }
.dvvb-text-secondary { color: var(--dvvb-secondary) !important; }
.dvvb-text-gold { color: var(--dvvb-secondary-light) !important; }
.dvvb-bg-primary { background-color: var(--dvvb-primary) !important; }
.dvvb-bg-secondary { background-color: var(--dvvb-secondary) !important; }
.dvvb-bg-light { background-color: var(--dvvb-background-light) !important; }

/* ==========================================================================
   Header Styles - Brown & Gold Theme
   ========================================================================== */
.site-header,
.ast-primary-header {
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%) !important;
    border-bottom: 2px solid var(--dvvb-secondary) !important;
    box-shadow: 0 2px 15px rgba(123, 74, 18, 0.15);
}

/* Header Height - Compact */
.main-header-bar,
.ast-primary-header-bar {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.ast-header-break-point .main-header-bar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.site-header .site-logo-img img,
.site-header .custom-logo-link img {
    max-height: 45px !important;
}

.main-header-menu > .menu-item > a {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Logo & Site Title */
.site-header .site-title a,
.ast-site-title-wrap .site-title a,
.site-header .ast-site-title-wrap a {
    color: var(--dvvb-secondary-light) !important;
    text-decoration: none;
    font-weight: 700;
}

.site-header .site-title a:hover {
    color: var(--dvvb-secondary) !important;
}

/* Navigation Menu Links */
.site-header .main-navigation a,
.site-header .ast-masthead-custom-menu-items a,
.ast-primary-header .main-header-menu > .menu-item > a,
.ast-primary-header .menu-item > a,
.main-header-bar .main-header-menu > .menu-item > a {
    color: var(--dvvb-secondary-light) !important;
    font-weight: 500;
    transition: var(--dvvb-transition);
}

.site-header .main-navigation a:hover,
.site-header .ast-masthead-custom-menu-items a:hover,
.ast-primary-header .main-header-menu > .menu-item > a:hover,
.ast-primary-header .menu-item > a:hover,
.main-header-bar .main-header-menu > .menu-item > a:hover,
.main-header-menu .menu-item:hover > a,
.main-header-menu .menu-item.current-menu-item > a {
    color: var(--dvvb-secondary) !important;
}

/* Dropdown Submenu */
.ast-primary-header .sub-menu,
.main-header-menu .sub-menu {
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 12px 0 !important;
    margin-top: 15px !important;
    min-width: 220px !important;
    position: relative;
}

/* Arrow indicator */
.ast-primary-header .sub-menu::before,
.main-header-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.04);
    border-radius: 3px;
}

.ast-primary-header .sub-menu li,
.main-header-menu .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.ast-primary-header .sub-menu a,
.main-header-menu .sub-menu a {
    color: #333333 !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    display: block !important;
    transition: all 0.2s ease !important;
    border-left: 3px solid transparent !important;
}

.ast-primary-header .sub-menu a:hover,
.main-header-menu .sub-menu a:hover {
    background: linear-gradient(90deg, rgba(123, 74, 18, 0.08), transparent) !important;
    color: var(--dvvb-primary) !important;
    border-left-color: var(--dvvb-secondary) !important;
}

.ast-primary-header .sub-menu li:first-child a,
.main-header-menu .sub-menu li:first-child a {
    border-radius: 8px 8px 0 0 !important;
}

.ast-primary-header .sub-menu li:last-child a,
.main-header-menu .sub-menu li:last-child a {
    border-radius: 0 0 8px 8px !important;
}

/* Header Buttons/CTA */
.site-header .ast-button,
.site-header .menu-item.highlight a,
.ast-primary-header .ast-menu-toggle {
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent)) !important;
    color: var(--dvvb-primary-dark) !important;
    border-radius: var(--dvvb-radius-sm);
    padding: 8px 20px;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.ast-mobile-menu-trigger-minimal,
.ast-mobile-menu-buttons .menu-toggle {
    color: var(--dvvb-secondary-light) !important;
}

/* Sticky/Scroll Header */
.ast-sticky-active .site-header,
.ast-sticky-active .ast-primary-header {
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%) !important;
    box-shadow: 0 4px 20px rgba(123, 74, 18, 0.2);
}

/* ==========================================================================
   Hero Widget - Subdued Text for Bright Images
   ========================================================================== */
.dvvb-hero--subdued .dvvb-hero__overlay {
    background: linear-gradient(135deg, rgba(90, 55, 16, 0.75), rgba(61, 42, 15, 0.85)) !important;
}

.dvvb-hero--subdued .dvvb-hero__subtitle {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.dvvb-hero--subdued .dvvb-hero__title {
    color: var(--dvvb-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.dvvb-hero--subdued .dvvb-hero__description {
    color: rgba(255, 255, 255, 0.85);
}

.dvvb-hero--subdued .dvvb-hero__trust-item {
    color: rgba(255, 255, 255, 0.8);
}

.dvvb-hero--subdued .dvvb-hero__trust-item i {
    color: var(--dvvb-secondary);
}

.dvvb-hero--subdued .dvvb-btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--dvvb-white);
}

.dvvb-hero--subdued .dvvb-btn--outline:hover {
    background: var(--dvvb-white);
    color: var(--dvvb-primary-dark);
}

/* ==========================================================================
   DVVB Header Widget
   ========================================================================== */
.dvvb-header-wrapper {
    position: relative;
    z-index: 1000;
}

/* Topbar */
.dvvb-topbar {
    font-size: 13px;
    padding: 8px 0;
}

.dvvb-topbar__inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dvvb-topbar a {
    color: inherit;
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-topbar a:hover {
    color: var(--dvvb-secondary);
}

.dvvb-topbar__sep {
    margin: 0 8px;
    opacity: 0.5;
}

.dvvb-topbar__right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Header */
.dvvb-header {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.dvvb-header__nav {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand/Logo */
.dvvb-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.dvvb-header__logo img {
    max-height: 45px;
    width: auto;
}

.dvvb-header__name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    white-space: nowrap;
}

.dvvb-header__name-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.dvvb-header__name-highlight {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #f6d58c 0%, #d4af37 50%, #f6d58c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headerShineText 3s linear infinite;
    filter: drop-shadow(0 2px 3px rgba(212, 175, 55, 0.3));
}

@keyframes headerShineText {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.dvvb-header__highlight {
    color: var(--dvvb-secondary) !important;
}

/* Menu */
.dvvb-header__menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Reset WordPress menu list styles */
.dvvb-header__menu,
.dvvb-header__menu ul,
.dvvb-header__menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dvvb-header__menu > li {
    position: relative;
}

.dvvb-header__menu a {
    color: var(--menu-color, #f6d58c);
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--dvvb-radius-sm);
    transition: var(--dvvb-transition);
}

.dvvb-header__menu a:hover,
.dvvb-header__menu .current-menu-item > a,
.dvvb-header__menu .current_page_item > a {
    color: var(--menu-hover, #d4af37);
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Sub-menu */
.dvvb-header__menu .sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
    padding: 12px 0;
    border: none;
}

/* Arrow indicator for DVVB header */
.dvvb-header__menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0, 0, 0, 0.04);
    border-radius: 3px;
}

.dvvb-header__menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dvvb-header__menu .sub-menu li {
    display: block;
    margin: 0;
}

.dvvb-header__menu .sub-menu a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
    white-space: nowrap;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.dvvb-header__menu .sub-menu a:hover {
    background: linear-gradient(90deg, rgba(123, 74, 18, 0.08), transparent);
    color: var(--dvvb-primary);
    border-left-color: var(--dvvb-secondary);
}

.dvvb-header__menu .sub-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.dvvb-header__menu .sub-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

/* Header Actions */
.dvvb-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dvvb-header__burger {
    display: none;
    background: transparent;
    border: none;
    color: var(--dvvb-secondary-light);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--dvvb-transition);
    -webkit-tap-highlight-color: transparent;
}

.dvvb-header__burger:hover,
.dvvb-header__burger:focus {
    background: rgba(255, 255, 255, 0.1);
}

.dvvb-header__burger:active {
    background: rgba(255, 255, 255, 0.2);
}

/* ============ Mobile Menu ============ */
.dvvb-header__mobile {
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, var(--dvvb-primary-dark) 0%, #2a1a08 100%);
    padding: 15px 20px 20px;
    border-top: 2px solid var(--dvvb-secondary);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dvvb-header__mobile.is-active {
    display: flex;
    animation: dvvbSlideDown 0.3s ease;
}

@keyframes dvvbSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes dvvbSubExpand {
    from { opacity: 0; max-height: 0; }
    to   { opacity: 1; max-height: 500px; }
}

/* Reset list styles (NOT the container padding) */
.dvvb-header__mobile ul,
.dvvb-header__mobile li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Menu links */
.dvvb-header__mobile > li > a,
.dvvb-header__mobile > .menu-item > a {
    display: block;
    color: var(--dvvb-secondary-light, #f6d58c);
    text-decoration: none;
    padding: 14px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.dvvb-header__mobile > li:last-child > a {
    border-bottom: none;
}

.dvvb-header__mobile > li > a:hover,
.dvvb-header__mobile > li > a:active {
    color: var(--dvvb-secondary, #d4af37);
    padding-left: 10px;
}

/* ============ Parent menu with children ============ */
.dvvb-header__mobile .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* Chevron arrow indicator */
.dvvb-header__mobile .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 12px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Arrow rotates when open */
.dvvb-header__mobile .menu-item-has-children.is-open > a::after {
    transform: rotate(-135deg);
    opacity: 1;
}

/* Parent link active state */
.dvvb-header__mobile .menu-item-has-children.is-open > a {
    color: var(--dvvb-secondary, #d4af37);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

/* ============ Sub-menu ============ */
.dvvb-header__mobile .sub-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 0;
    margin: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Sub-menu expanded */
.dvvb-header__mobile .menu-item-has-children.is-open > .sub-menu {
    max-height: 500px;
    padding: 5px 0 8px 15px;
    border-left: 3px solid rgba(212, 175, 55, 0.35);
    margin-left: 8px;
}

/* Sub-menu links */
.dvvb-header__mobile .sub-menu a {
    display: block;
    font-size: 14px;
    padding: 11px 10px;
    color: rgba(246, 213, 140, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
    border-radius: 6px;
}

.dvvb-header__mobile .sub-menu li:last-child > a {
    border-bottom: none;
}

.dvvb-header__mobile .sub-menu a:hover,
.dvvb-header__mobile .sub-menu a:active {
    color: var(--dvvb-secondary, #d4af37);
    padding-left: 16px;
    background: rgba(212, 175, 55, 0.08);
}

/* Header Responsive */
@media (max-width: 992px) {
    .dvvb-header__menu {
        display: none;
    }

    .dvvb-header__burger {
        display: block;
    }

    .dvvb-header__actions .dvvb-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .dvvb-topbar__inner {
        justify-content: center;
        text-align: center;
    }

    .dvvb-topbar__right {
        display: none;
    }

    .dvvb-header__name-text {
        font-size: 11px;
    }

    .dvvb-header__name-highlight {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .dvvb-header__logo img {
        max-height: 35px;
    }
}

/* Sticky Header */
.dvvb-header-sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.dvvb-header-sticky .dvvb-header {
    transition: all 0.3s ease;
}

/* Optional: smaller header on scroll (handled by JS) */
.dvvb-header-sticky.is-scrolled .dvvb-header {
    padding: 5px 0;
}

.dvvb-header-sticky.is-scrolled .dvvb-header__logo img {
    max-height: 38px;
}

.dvvb-header-sticky.is-scrolled .dvvb-header__name-text {
    font-size: 12px;
}

.dvvb-header-sticky.is-scrolled .dvvb-header__name-highlight {
    font-size: 18px;
}

/* Phone Number Animation */
.dvvb-topbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    animation: phonePulse 2s ease-in-out infinite;
}

.dvvb-topbar__phone:hover {
    color: #fff !important;
    background: rgba(212, 175, 55, 0.4);
}

.dvvb-phone-icon {
    animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}

/* CTA Button Pulse Animation */
.dvvb-btn--cta-pulse {
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    color: var(--dvvb-primary-dark) !important;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    animation: ctaGlow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.dvvb-btn--cta-pulse i {
    margin-right: 4px;
    animation: ctaIconBounce 1s ease-in-out infinite;
}

.dvvb-btn--cta-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: ctaShimmer 2s linear infinite;
}

.dvvb-btn--cta-pulse:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: var(--dvvb-primary-dark) !important;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.3);
    }
}

@keyframes ctaShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes ctaIconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ==========================================================================
   DVVB Footer Widget
   ========================================================================== */
.dvvb-footer {
    color: var(--footer-text, rgba(255,255,255,0.78));
}

.dvvb-footer__inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 60px var(--dvvb-container-padding) 40px;
}

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

.dvvb-footer__title {
    color: var(--footer-title, #fff);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--dvvb-secondary);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Footer Company Brand - Premium Style */
.dvvb-footer__brand {
    margin-bottom: 24px;
}

.dvvb-footer__company-name {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dvvb-footer__company-text {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.dvvb-footer__company-highlight {
    color: var(--dvvb-secondary);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f6d58c 0%, #d4af37 50%, #f6d58c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerShineText 3s linear infinite;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

@keyframes footerShineText {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.dvvb-footer__brand-line {
    height: 4px;
    width: 80px;
    margin-top: 16px;
    background: linear-gradient(90deg, var(--dvvb-secondary) 0%, var(--dvvb-secondary-light) 50%, transparent 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.dvvb-footer__brand-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: footerLineShimmer 2s ease-in-out infinite;
}

@keyframes footerLineShimmer {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.dvvb-footer__col--company .dvvb-footer__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    padding-left: 0;
    border-left: none;
}

.dvvb-footer__desc {
    margin: 0 0 20px;
    line-height: 1.7;
}

.dvvb-footer__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Footer Social Buttons */
.dvvb-footer__social {
    margin-top: 20px;
}

.dvvb-footer__social-label {
    display: block;
    font-size: 14px;
    color: var(--footer-text);
    margin-bottom: 12px;
    font-weight: 500;
}

.dvvb-footer__social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dvvb-footer__social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dvvb-footer__social-btn--facebook {
    background: #1877f2;
    color: #ffffff !important;
}

.dvvb-footer__social-btn--facebook:hover {
    background: #0d65d9;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.dvvb-footer__social-btn--facebook i {
    font-size: 16px;
}

.dvvb-footer__social-btn--zalo {
    background: #0068ff;
    color: #ffffff !important;
}

.dvvb-footer__social-btn--zalo:hover {
    background: #0052cc;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.dvvb-footer__social-btn--zalo span {
    color: #ffffff !important;
}

.dvvb-footer__zalo-icon {
    width: 20px;
    height: 20px;
}

/* Quick Links */
.dvvb-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dvvb-footer__links a {
    color: var(--footer-link, #f6d58c);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--dvvb-transition);
}

.dvvb-footer__links a:hover {
    color: var(--footer-link-hover, #d4af37);
    padding-left: 5px;
}

.dvvb-footer__links i {
    font-size: 10px;
    opacity: 0.7;
}

/* Contact Info */
.dvvb-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dvvb-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dvvb-footer__contact i {
    color: var(--dvvb-secondary);
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.dvvb-footer__contact a {
    color: var(--footer-link, #f6d58c);
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-footer__contact a:hover {
    color: var(--footer-link-hover, #d4af37);
}

.dvvb-footer__contact span {
    color: var(--footer-text, rgba(255,255,255,0.85));
}

.dvvb-footer__contact-value {
    color: var(--footer-link, #f6d58c) !important;
}

/* Contact Font Sizes */
.dvvb-footer__contact--small {
    font-size: 14px;
}

.dvvb-footer__contact--small i {
    font-size: 14px;
}

.dvvb-footer__contact--normal {
    font-size: 16px;
}

.dvvb-footer__contact--large {
    font-size: 18px;
}

.dvvb-footer__contact--large i {
    font-size: 18px;
}

/* Bottom Bar */
.dvvb-footer__bottom {
    padding: 20px 0;
    margin-top: 20px;
}

.dvvb-footer__bottom-inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.dvvb-footer__policies {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dvvb-footer__policies a {
    color: var(--footer-link, #f6d58c);
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-footer__policies a:hover {
    color: var(--footer-link-hover, #d4af37);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .dvvb-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dvvb-footer__col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .dvvb-footer__inner {
        padding: 40px 20px 30px;
    }

    .dvvb-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dvvb-footer__col:first-child {
        grid-column: span 1;
    }

    .dvvb-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Footer Company Brand Mobile */
    .dvvb-footer__company-name {
        font-size: 24px;
        text-align: center;
        align-items: center;
    }

    .dvvb-footer__company-highlight {
        font-size: 28px;
    }

    .dvvb-footer__brand-line {
        margin-left: auto;
        margin-right: auto;
    }

    .dvvb-footer__col--company .dvvb-footer__desc {
        text-align: center;
    }

    .dvvb-footer__col--company .dvvb-footer__cta {
        justify-content: center;
    }
}

/* ==========================================================================
   Sticky CTA Mobile
   ========================================================================== */
.dvvb-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dvvb-white);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
}

.dvvb-sticky-cta__inner {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dvvb-sticky-cta .dvvb-btn {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

@media (max-width: 768px) {
    .dvvb-sticky-cta {
        display: block;
    }

    .dvvb-footer {
        padding-bottom: 80px;
    }
}

/* ==========================================================================
   Loan Calculator Widget
   ========================================================================== */
.dvvb-loan-calc {
    --calc-accent: #d4af37;
    --calc-bg: #faf8f5;
    --calc-card-bg: #ffffff;
    --calc-text: #2c2c2c;
    --calc-text-light: #666666;
    --calc-border: #e8e0d5;
    --calc-total-bg: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
    --calc-slider-bg: #d9d5cf;
    --calc-slider-fill: var(--calc-accent);
    width: 100%;
}

.dvvb-loan-calc--dark {
    --calc-bg: #1a1a2e;
    --calc-card-bg: #252540;
    --calc-text: #ffffff;
    --calc-text-light: rgba(255, 255, 255, 0.7);
    --calc-border: rgba(255, 255, 255, 0.1);
    --calc-total-bg: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    --calc-slider-bg: rgba(255, 255, 255, 0.2);
}

.dvvb-loan-calc__inner {
    background: var(--calc-bg);
    border-radius: var(--dvvb-radius-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Header */
.dvvb-loan-calc__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.dvvb-loan-calc__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--calc-text);
    margin: 0;
    font-style: italic;
}

.dvvb-loan-calc__rate {
    text-align: right;
}

.dvvb-loan-calc__rate label {
    display: block;
    font-size: 12px;
    color: var(--calc-text-light);
    margin-bottom: 5px;
}

.dvvb-loan-calc__rate-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dvvb-loan-calc__rate-input input {
    width: 80px;
    padding: 10px 12px;
    border: 1px solid var(--calc-border);
    border-radius: var(--dvvb-radius-sm);
    background: var(--calc-card-bg);
    color: var(--calc-accent);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.dvvb-loan-calc__rate-input input:focus {
    outline: none;
    border-color: var(--calc-accent);
}

.dvvb-loan-calc__rate-input span {
    color: var(--calc-accent);
    font-weight: 600;
    font-size: 14px;
}

/* Field */
.dvvb-loan-calc__field {
    margin-bottom: 30px;
}

.dvvb-loan-calc__field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dvvb-loan-calc__field-header label {
    font-size: 15px;
    color: var(--calc-text-light);
}

.dvvb-loan-calc__field-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--calc-text);
}

.dvvb-loan-calc__field-value span:last-child {
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
    color: var(--calc-text-light);
}

/* Slider */
.dvvb-loan-calc__slider-wrap {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
}

.dvvb-loan-calc__slider-wrap input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.dvvb-loan-calc__slider-wrap input[type="range"]::-webkit-slider-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
}

.dvvb-loan-calc__slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--calc-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    border: 3px solid #fff;
    transition: transform 0.2s ease;
}

.dvvb-loan-calc__slider-wrap input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.dvvb-loan-calc__slider-wrap input[type="range"]::-moz-range-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
}

.dvvb-loan-calc__slider-wrap input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--calc-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    border: 3px solid #fff;
}

.dvvb-loan-calc__slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    transform: translateY(-50%);
    background: var(--calc-slider-bg);
    border-radius: 3px;
    overflow: hidden;
    z-index: 1;
}

.dvvb-loan-calc__slider-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--calc-accent), var(--dvvb-secondary-light));
    border-radius: 3px;
    width: 50%;
    transition: width 0.1s ease;
}

.dvvb-loan-calc__slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--calc-text-light);
}

/* Results */
.dvvb-loan-calc__results {
    margin-top: 30px;
    margin-bottom: 20px;
}

.dvvb-loan-calc__result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dvvb-loan-calc__result-item {
    background: var(--calc-card-bg);
    padding: 20px;
    border-radius: var(--dvvb-radius-sm);
    border: 1px solid var(--calc-border);
}

.dvvb-loan-calc__result-label {
    display: block;
    font-size: 13px;
    color: var(--calc-text-light);
    margin-bottom: 8px;
}

.dvvb-loan-calc__result-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--calc-text);
}

.dvvb-loan-calc__result-value--accent {
    color: var(--calc-accent);
}

/* Total */
.dvvb-loan-calc__total {
    background: var(--calc-total-bg);
    padding: 30px;
    border-radius: var(--dvvb-radius);
    text-align: center;
    margin-bottom: 25px;
}

.dvvb-loan-calc__total-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dvvb-secondary-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dvvb-loan-calc__total-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.dvvb-loan-calc__total-value .dvvb-calc-total {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.dvvb-loan-calc__total-currency {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA */
.dvvb-loan-calc__cta {
    margin-top: 20px;
}

.dvvb-loan-calc__cta a {
    text-decoration: none !important;
}

.dvvb-btn--full {
    width: 100%;
    justify-content: center;
}

/* Value Animation */
.dvvb-loan-calc__result-value,
.dvvb-loan-calc__field-value,
.dvvb-loan-calc__total-value .dvvb-calc-total {
    transition: transform 0.2s ease, color 0.2s ease;
}

.dvvb-loan-calc__result-value.is-updating,
.dvvb-loan-calc__field-value.is-updating,
.dvvb-loan-calc__total-value .dvvb-calc-total.is-updating {
    transform: scale(1.05);
}

@keyframes dvvb-value-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.dvvb-calc-animated {
    animation: dvvb-value-pulse 0.3s ease;
}

/* Responsive */
@media (max-width: 600px) {
    .dvvb-loan-calc__inner {
        padding: 25px 20px;
    }

    .dvvb-loan-calc__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dvvb-loan-calc__rate {
        text-align: left;
    }

    .dvvb-loan-calc__title {
        font-size: 22px;
    }

    .dvvb-loan-calc__field-value {
        font-size: 20px;
    }

    .dvvb-loan-calc__result-row {
        grid-template-columns: 1fr;
    }

    .dvvb-loan-calc__result-value {
        font-size: 18px;
    }

    .dvvb-loan-calc__total-value .dvvb-calc-total {
        font-size: 36px;
    }
}

/* ==========================================================================
   News Widget
   ========================================================================== */
.dvvb-news {
    padding: 80px 0;
    width: 100%;
}

.dvvb-news__inner {
    width: 100%;
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

/* Header */
.dvvb-news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 25px;
}

.dvvb-news__header-left {
    flex: 1;
    min-width: 280px;
}

.dvvb-news__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dvvb-text);
    margin: 0 0 10px;
}

.dvvb-news__desc {
    font-size: 16px;
    color: var(--dvvb-text-light);
    margin: 0;
}

/* Filter Tabs */
.dvvb-news__filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dvvb-news__filter-btn {
    background: var(--dvvb-white);
    border: 1px solid var(--dvvb-border);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dvvb-text);
    cursor: pointer;
    transition: var(--dvvb-transition);
}

.dvvb-news__filter-btn:hover {
    border-color: var(--dvvb-primary);
    color: var(--dvvb-primary);
}

.dvvb-news__filter-btn.is-active {
    background: var(--dvvb-primary);
    border-color: var(--dvvb-primary);
    color: var(--dvvb-white);
}

/* Posts Grid */
.dvvb-news__grid {
    display: grid;
    gap: 30px;
}

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

.dvvb-news__grid.dvvb-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.dvvb-news__grid.dvvb-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* News Card */
.dvvb-news-card {
    background: var(--dvvb-white);
    border-radius: var(--dvvb-radius);
    overflow: hidden;
    transition: var(--dvvb-transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dvvb-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dvvb-news-card--minimal {
    background: transparent;
    box-shadow: none;
}

.dvvb-news-card--minimal:hover {
    transform: none;
    box-shadow: none;
}

.dvvb-news-card--elevated {
    background: var(--dvvb-white);
    box-shadow: 0 4px 25px rgba(123, 74, 18, 0.1);
    border: 1px solid rgba(232, 224, 213, 0.5);
}

.dvvb-news-card--elevated:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(123, 74, 18, 0.15);
    border-color: var(--dvvb-secondary);
}

.dvvb-news-card--bordered {
    border: 1px solid var(--dvvb-border);
    box-shadow: none;
}

.dvvb-news-card--bordered:hover {
    border-color: var(--dvvb-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Thumbnail */
.dvvb-news-card__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--dvvb-radius) var(--dvvb-radius) 0 0;
    aspect-ratio: 16/10;
}

.dvvb-news-card--minimal .dvvb-news-card__thumb {
    border-radius: var(--dvvb-radius);
    margin-bottom: 15px;
}

.dvvb-news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--dvvb-transition);
}

.dvvb-news-card:hover .dvvb-news-card__thumb img {
    transform: scale(1.05);
}

/* Content */
.dvvb-news-card__content {
    padding: 20px;
}

.dvvb-news-card--minimal .dvvb-news-card__content {
    padding: 0;
}

.dvvb-news-card__date {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dvvb-news-card__title {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dvvb-news-card__title a {
    color: var(--dvvb-text);
    text-decoration: none !important;
    transition: var(--dvvb-transition);
}

.dvvb-news-card__title a:hover {
    text-decoration: none !important;
}

.dvvb-news-card__title a:hover {
    color: var(--dvvb-primary);
}

.dvvb-news-card__excerpt {
    font-size: 14px;
    color: var(--dvvb-text-light);
    line-height: 1.6;
    margin: 0 0 15px;
}

.dvvb-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dvvb-primary) !important;
    text-decoration: none !important;
    transition: var(--dvvb-transition);
}

.dvvb-news-card__link:hover {
    gap: 10px;
    color: var(--dvvb-primary-dark) !important;
    text-decoration: none !important;
}

/* Pagination */
.dvvb-news__pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.dvvb-news__pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.dvvb-news__pagination li {
    list-style: none;
}

.dvvb-news__pagination a,
.dvvb-news__pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: var(--dvvb-radius-sm);
    background: var(--dvvb-white);
    border: 1px solid var(--dvvb-border);
    color: var(--dvvb-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-news__pagination a:hover {
    border-color: var(--dvvb-primary);
    color: var(--dvvb-primary);
}

.dvvb-news__pagination .current {
    background: var(--dvvb-primary);
    border-color: var(--dvvb-primary);
    color: var(--dvvb-white);
}

.dvvb-news__pagination .prev,
.dvvb-news__pagination .next {
    background: var(--dvvb-background-light);
}

.dvvb-news__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--dvvb-text-light);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .dvvb-news__grid.dvvb-grid--4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dvvb-news__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dvvb-news__grid.dvvb-grid--3,
    .dvvb-news__grid.dvvb-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dvvb-news__title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .dvvb-news__grid.dvvb-grid--2,
    .dvvb-news__grid.dvvb-grid--3,
    .dvvb-news__grid.dvvb-grid--4 {
        grid-template-columns: 1fr;
    }

    .dvvb-news__filter {
        width: 100%;
    }

    .dvvb-news__filter-btn {
        flex: 1;
        text-align: center;
    }
}

/* ==========================================================================
   About Us Widget
   ========================================================================== */
.dvvb-about {
    padding: 80px 0;
}

.dvvb-about__inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dvvb-about--image-left .dvvb-about__inner {
    direction: rtl;
}

.dvvb-about--image-left .dvvb-about__content,
.dvvb-about--image-left .dvvb-about__image {
    direction: ltr;
}

.dvvb-about__subtitle {
    display: inline-block;
    color: var(--about-accent, var(--dvvb-secondary));
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(123, 74, 18, 0.1));
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dvvb-about__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dvvb-text);
    margin: 0 0 25px;
    line-height: 1.3;
}

.dvvb-about__highlight {
    color: var(--about-accent, var(--dvvb-secondary));
}

.dvvb-about__desc {
    font-size: 16px;
    color: var(--dvvb-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.dvvb-about__desc p {
    margin: 0 0 15px;
}

.dvvb-about__desc p:last-child {
    margin-bottom: 0;
}

.dvvb-about__features {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dvvb-about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dvvb-text);
}

.dvvb-about__feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    max-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(123, 74, 18, 0.15));
    border-radius: 50%;
    color: var(--about-accent, var(--dvvb-secondary));
    flex-shrink: 0;
    overflow: hidden;
}

.dvvb-about__feature-icon i,
.dvvb-about__feature-icon svg {
    font-size: 15px !important;
    width: 15px !important;
    height: 15px !important;
    line-height: 1;
}

.dvvb-about__feature-text {
    font-weight: 500;
}

/* About Image */
.dvvb-about__image {
    position: relative;
}

.dvvb-about__image img {
    width: 100%;
    height: auto;
    border-radius: var(--dvvb-radius-lg);
    box-shadow: var(--dvvb-shadow);
}

.dvvb-about__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--about-accent, var(--dvvb-secondary));
    border-radius: var(--dvvb-radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.dvvb-about--image-left .dvvb-about__image-accent {
    right: auto;
    left: -20px;
}

/* About Responsive */
@media (max-width: 992px) {
    .dvvb-about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dvvb-about--image-left .dvvb-about__inner,
    .dvvb-about--image-right .dvvb-about__inner {
        direction: ltr;
    }

    .dvvb-about__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .dvvb-about__title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .dvvb-about {
        padding: 50px 0;
    }

    .dvvb-about__content {
        text-align: center;
    }

    .dvvb-about__features {
        grid-template-columns: 1fr;
    }

    .dvvb-about__feature {
        justify-content: flex-start;
    }

    .dvvb-about__title {
        font-size: 26px;
    }

    .dvvb-about__image-accent {
        display: none;
    }

    /* Center button on mobile */
    .dvvb-about__content .dvvb-btn {
        display: flex;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }
}

/* ==========================================================================
   Service Cards Widget
   ========================================================================== */
.dvvb-service-cards {
    padding: 80px 0;
    background: var(--dvvb-background-light);
}

.dvvb-service-cards__inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

.dvvb-service-cards__header {
    text-align: center;
    margin-bottom: 50px;
}

.dvvb-service-cards__subtitle {
    display: inline-block;
    color: var(--svc-accent, var(--dvvb-secondary));
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(123, 74, 18, 0.1));
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dvvb-service-cards__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dvvb-text);
    margin: 0 0 15px;
    line-height: 1.3;
}

.dvvb-service-cards__desc {
    font-size: 17px;
    color: var(--dvvb-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards Grid */
.dvvb-service-cards__grid {
    display: grid;
    gap: 30px;
}

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

.dvvb-service-cards__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.dvvb-service-cards__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Service Card - Overlay Style */
.dvvb-svc-card--overlay {
    position: relative;
    min-height: 420px;
    border-radius: var(--dvvb-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dvvb-svc-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--dvvb-primary);
    transition: transform 0.5s ease;
}

.dvvb-svc-card--overlay:hover .dvvb-svc-card__bg {
    transform: scale(1.08);
}

.dvvb-svc-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(90, 55, 16, 0.3) 0%, var(--svc-overlay, rgba(90, 55, 16, 0.9)) 100%);
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--overlay:hover .dvvb-svc-card__overlay {
    background: linear-gradient(180deg, rgba(90, 55, 16, 0.4) 0%, var(--svc-overlay, rgba(90, 55, 16, 0.95)) 100%);
}

.dvvb-svc-card--overlay .dvvb-svc-card__content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--dvvb-white);
}

.dvvb-svc-card--overlay .dvvb-svc-card__icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    max-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--svc-accent, var(--dvvb-secondary));
    border-radius: 50%;
    color: var(--dvvb-primary-dark);
    margin-bottom: 18px;
    transition: var(--dvvb-transition);
    overflow: hidden;
    flex-shrink: 0;
}

.dvvb-svc-card--overlay .dvvb-svc-card__icon i,
.dvvb-svc-card--overlay .dvvb-svc-card__icon svg {
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 1;
}

.dvvb-svc-card--overlay:hover .dvvb-svc-card__icon {
    transform: scale(1.08);
    box-shadow: var(--dvvb-shadow-gold);
}

.dvvb-svc-card--overlay .dvvb-svc-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.dvvb-svc-card--overlay .dvvb-svc-card__title a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.dvvb-svc-card--overlay .dvvb-svc-card__title a:hover {
    color: var(--dvvb-secondary-light) !important;
    text-decoration: none !important;
}

.dvvb-svc-card--overlay .dvvb-svc-card__desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.dvvb-svc-card--overlay .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dvvb-secondary-light) !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--dvvb-transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.dvvb-svc-card--overlay .dvvb-svc-card__link:hover {
    gap: 12px;
    text-decoration: none !important;
    color: #ffffff !important;
}

/* Service Card - Stacked Style */
.dvvb-svc-card--stacked {
    background: var(--dvvb-white);
    border-radius: var(--dvvb-radius-lg);
    overflow: hidden;
    box-shadow: var(--dvvb-shadow);
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--stacked:hover {
    transform: translateY(-8px);
    box-shadow: var(--dvvb-shadow-hover);
}

.dvvb-svc-card__image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.dvvb-svc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dvvb-svc-card--stacked:hover .dvvb-svc-card__image img {
    transform: scale(1.08);
}

.dvvb-svc-card__icon-badge {
    position: absolute;
    bottom: -22px;
    right: 20px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--svc-accent, var(--dvvb-secondary));
    border-radius: 50%;
    color: var(--dvvb-primary-dark);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
    z-index: 2;
    overflow: hidden;
}

.dvvb-svc-card__icon-badge i,
.dvvb-svc-card__icon-badge svg {
    font-size: 17px !important;
    width: 17px !important;
    height: 17px !important;
    line-height: 1;
}

.dvvb-svc-card__body {
    padding: 35px 25px 25px;
}

.dvvb-svc-card--stacked .dvvb-svc-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dvvb-svc-card--stacked .dvvb-svc-card__title a {
    color: var(--dvvb-text);
    text-decoration: none !important;
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--stacked .dvvb-svc-card__title a:hover {
    color: var(--dvvb-primary);
    text-decoration: none !important;
}

.dvvb-svc-card--stacked .dvvb-svc-card__desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    line-height: 1.7;
    margin: 0 0 18px;
}

.dvvb-svc-card--stacked .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dvvb-primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--stacked .dvvb-svc-card__link:hover {
    color: var(--svc-accent, var(--dvvb-secondary));
    gap: 12px;
    text-decoration: none !important;
}

/* ==========================================================================
   Service Cards - Additional Styles
   ========================================================================== */

/* Section Background Styles */
.dvvb-svc-bg--white {
    background: #ffffff;
}

.dvvb-svc-bg--light {
    background: var(--dvvb-background-light);
}

.dvvb-svc-bg--gradient {
    background: linear-gradient(180deg, #faf8f5 0%, #f5ead8 100%);
}

.dvvb-svc-bg--dark {
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
}

.dvvb-svc-bg--dark .dvvb-service-cards__subtitle {
    color: var(--dvvb-secondary);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.dvvb-svc-bg--dark .dvvb-service-cards__title {
    color: var(--dvvb-secondary-light);
}

.dvvb-svc-bg--dark .dvvb-service-cards__desc {
    color: rgba(246, 213, 140, 0.85);
}

/* Card Number Badge */
.dvvb-svc-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    z-index: 1;
}

/* ============ STYLE 2: GLASS ============ */
.dvvb-svc-card--glass {
    position: relative;
    min-height: 380px;
    border-radius: var(--dvvb-radius-lg);
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(123, 74, 18, 0.1);
    transition: var(--dvvb-transition);
    display: flex;
    flex-direction: column;
}

.dvvb-svc--glass {
    background: linear-gradient(135deg, #e8d5b8 0%, #d4c4a8 100%);
}

.dvvb-svc-card--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 45px rgba(123, 74, 18, 0.15);
}

.dvvb-svc-card--glass .dvvb-svc-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 16px;
    color: var(--dvvb-primary-dark);
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.dvvb-svc-card--glass .dvvb-svc-card__icon i,
.dvvb-svc-card--glass .dvvb-svc-card__icon svg {
    font-size: 24px !important;
    width: 24px !important;
    height: 24px !important;
}

.dvvb-svc-card--glass .dvvb-svc-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dvvb-primary-dark);
    margin: 0 0 15px;
    text-transform: uppercase;
}

.dvvb-svc-card--glass .dvvb-svc-card__desc {
    font-size: 15px;
    color: var(--dvvb-primary);
    line-height: 1.7;
    margin: 0 0 25px;
    flex-grow: 1;
}

.dvvb-svc-card--glass .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dvvb-primary-dark);
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    background: var(--dvvb-secondary);
    border-radius: 30px;
    transition: var(--dvvb-transition);
    align-self: flex-start;
}

.dvvb-svc-card--glass .dvvb-svc-card__link:hover {
    background: var(--dvvb-primary-dark);
    color: var(--dvvb-secondary-light);
    gap: 12px;
}

/* ============ STYLE 3: ELEGANT ============ */
.dvvb-svc-card--elegant {
    position: relative;
    background: #ffffff;
    border-radius: var(--dvvb-radius-lg);
    padding: 40px 30px;
    border: 1px solid var(--dvvb-border);
    box-shadow: 0 4px 20px rgba(123, 74, 18, 0.06);
    transition: var(--dvvb-transition);
    text-align: center;
}

.dvvb-svc-card--elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--dvvb-secondary), transparent);
    border-radius: 0 0 4px 4px;
}

.dvvb-svc-card--elegant:hover {
    border-color: var(--dvvb-secondary);
    box-shadow: 0 15px 40px rgba(123, 74, 18, 0.12);
}

.dvvb-svc-card--elegant .dvvb-svc-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf8f5, #f5ead8);
    border-radius: 50%;
    border: 2px solid var(--dvvb-secondary);
    color: var(--dvvb-primary);
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--elegant .dvvb-svc-card__icon i,
.dvvb-svc-card--elegant .dvvb-svc-card__icon svg {
    font-size: 28px !important;
    width: 28px !important;
    height: 28px !important;
}

.dvvb-svc-card--elegant:hover .dvvb-svc-card__icon {
    background: var(--dvvb-secondary);
    color: var(--dvvb-primary-dark);
}

.dvvb-svc-card--elegant .dvvb-svc-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
    text-transform: uppercase;
}

.dvvb-svc-card--elegant .dvvb-svc-card__desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    line-height: 1.7;
    margin: 0 0 25px;
}

.dvvb-svc-card--elegant .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dvvb-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--elegant .dvvb-svc-card__link:hover {
    color: var(--dvvb-secondary);
    gap: 12px;
}

/* ============ STYLE 4: GRADIENT ============ */
.dvvb-svc-card--gradient {
    position: relative;
    border-radius: var(--dvvb-radius-lg);
    padding: 40px 30px;
    background: linear-gradient(145deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
    color: #ffffff;
    overflow: hidden;
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--gradient:hover::before {
    transform: scale(1.5);
}

.dvvb-svc-card--gradient .dvvb-svc-card__content {
    position: relative;
    z-index: 2;
}

.dvvb-svc-card--gradient .dvvb-svc-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dvvb-secondary);
    border-radius: 12px;
    color: var(--dvvb-primary-dark);
    margin-bottom: 24px;
}

.dvvb-svc-card--gradient .dvvb-svc-card__icon i,
.dvvb-svc-card--gradient .dvvb-svc-card__icon svg {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
}

.dvvb-svc-card--gradient .dvvb-svc-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dvvb-secondary-light);
    margin: 0 0 15px;
    text-transform: uppercase;
}

.dvvb-svc-card--gradient .dvvb-svc-card__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 25px;
}

.dvvb-svc-card--gradient .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dvvb-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--gradient .dvvb-svc-card__link:hover {
    color: #ffffff;
    gap: 12px;
}

/* ============ STYLE 5: MINIMAL ============ */
.dvvb-svc-card--minimal {
    position: relative;
    padding: 35px 25px;
    background: transparent;
    border-left: 3px solid var(--dvvb-secondary);
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--minimal:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 35px;
}

.dvvb-svc-card--minimal .dvvb-svc-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dvvb-secondary);
    margin-bottom: 20px;
}

.dvvb-svc-card--minimal .dvvb-svc-card__icon i,
.dvvb-svc-card--minimal .dvvb-svc-card__icon svg {
    font-size: 32px !important;
    width: 32px !important;
    height: 32px !important;
}

.dvvb-svc-card--minimal .dvvb-svc-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 12px;
    text-transform: uppercase;
}

.dvvb-svc-card--minimal .dvvb-svc-card__desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    line-height: 1.7;
    margin: 0 0 20px;
}

.dvvb-svc-card--minimal .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dvvb-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--minimal .dvvb-svc-card__link:hover {
    color: var(--dvvb-secondary);
    gap: 10px;
}

/* ============ STYLE 6: PREMIUM ============ */
.dvvb-svc-card--premium {
    position: relative;
    background: #ffffff;
    border-radius: var(--dvvb-radius-lg);
    padding: 40px 30px;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--dvvb-secondary) 0%, var(--dvvb-accent) 50%, var(--dvvb-secondary) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    transition: var(--dvvb-transition);
    overflow: hidden;
}

.dvvb-svc-card--premium:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
    transform: translateY(-8px);
}

.dvvb-svc-card__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.dvvb-svc-card--premium:hover .dvvb-svc-card__shine {
    left: 150%;
}

.dvvb-svc-card--premium .dvvb-svc-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 50%;
    color: var(--dvvb-primary-dark);
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.dvvb-svc-card--premium .dvvb-svc-card__icon i,
.dvvb-svc-card--premium .dvvb-svc-card__icon svg {
    font-size: 26px !important;
    width: 26px !important;
    height: 26px !important;
}

.dvvb-svc-card--premium .dvvb-svc-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
    text-transform: uppercase;
}

.dvvb-svc-card--premium .dvvb-svc-card__desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    line-height: 1.7;
    margin: 0 0 25px;
}

.dvvb-svc-card--premium .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 30px;
    transition: var(--dvvb-transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.dvvb-svc-card--premium .dvvb-svc-card__link:hover {
    background: var(--dvvb-primary);
    color: var(--dvvb-secondary-light);
    gap: 12px;
    box-shadow: 0 6px 20px rgba(123, 74, 18, 0.3);
}

/* ============ STYLE 7: DARK ============ */
.dvvb-svc-card--dark {
    position: relative;
    min-height: 400px;
    border-radius: var(--dvvb-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
}

.dvvb-svc-card--dark .dvvb-svc-card__overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.dvvb-svc-card--dark .dvvb-svc-card__content {
    position: relative;
    z-index: 2;
    padding: 35px;
}

.dvvb-svc-card--dark .dvvb-svc-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dvvb-secondary);
    border-radius: 50%;
    color: #0f0f1a;
    margin-bottom: 20px;
}

.dvvb-svc-card--dark .dvvb-svc-card__icon i,
.dvvb-svc-card--dark .dvvb-svc-card__icon svg {
    font-size: 22px !important;
    width: 22px !important;
    height: 22px !important;
}

.dvvb-svc-card--dark .dvvb-svc-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.dvvb-svc-card--dark .dvvb-svc-card__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 20px;
}

.dvvb-svc-card--dark .dvvb-svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dvvb-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--dvvb-transition);
}

.dvvb-svc-card--dark .dvvb-svc-card__link:hover {
    color: #ffffff;
    gap: 12px;
}

/* ============ HOVER EFFECTS ============ */
.dvvb-svc-hover--lift .dvvb-svc-card:hover {
    transform: translateY(-10px);
}

.dvvb-svc-hover--glow .dvvb-svc-card:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.dvvb-svc-hover--border .dvvb-svc-card:hover {
    border-color: var(--dvvb-secondary) !important;
}

.dvvb-svc-hover--scale .dvvb-svc-card:hover {
    transform: scale(1.03);
}

/* ============ ICON STYLES ============ */
.dvvb-svc-icon--square .dvvb-svc-card__icon {
    border-radius: 12px !important;
}

.dvvb-svc-icon--hexagon .dvvb-svc-card__icon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 0 !important;
}

.dvvb-svc-icon--none .dvvb-svc-card__icon {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Service Cards Responsive */
@media (max-width: 992px) {
    .dvvb-service-cards__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dvvb-svc-card--overlay,
    .dvvb-svc-card--dark {
        min-height: 380px;
    }

    .dvvb-svc-card--glass {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .dvvb-service-cards {
        padding: 50px 0;
    }

    .dvvb-service-cards__grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dvvb-service-cards__title {
        font-size: 28px;
    }

    .dvvb-svc-card--overlay,
    .dvvb-svc-card--dark {
        min-height: 350px;
    }

    .dvvb-svc-card--glass {
        min-height: 320px;
        padding: 30px 25px;
    }

    .dvvb-svc-card--elegant,
    .dvvb-svc-card--premium {
        padding: 30px 20px;
    }

    .dvvb-svc-card--elegant .dvvb-svc-card__icon,
    .dvvb-svc-card--premium .dvvb-svc-card__icon {
        width: 60px;
        height: 60px;
    }

    .dvvb-svc-card--elegant .dvvb-svc-card__icon i,
    .dvvb-svc-card--premium .dvvb-svc-card__icon i {
        font-size: 22px !important;
    }
}

@media (max-width: 576px) {
    .dvvb-service-cards__grid--2,
    .dvvb-service-cards__grid--3,
    .dvvb-service-cards__grid--4 {
        grid-template-columns: 1fr;
    }

    .dvvb-svc-card--overlay,
    .dvvb-svc-card--dark {
        min-height: 320px;
    }

    .dvvb-svc-card--overlay .dvvb-svc-card__content,
    .dvvb-svc-card--dark .dvvb-svc-card__content {
        padding: 25px;
    }

    .dvvb-svc-card--overlay .dvvb-svc-card__title,
    .dvvb-svc-card--dark .dvvb-svc-card__title,
    .dvvb-svc-card--glass .dvvb-svc-card__title,
    .dvvb-svc-card--gradient .dvvb-svc-card__title,
    .dvvb-svc-card--elegant .dvvb-svc-card__title,
    .dvvb-svc-card--premium .dvvb-svc-card__title,
    .dvvb-svc-card--minimal .dvvb-svc-card__title {
        font-size: 18px;
    }

    .dvvb-svc-card__number {
        font-size: 36px;
    }
}

/* ==========================================================================
   Process Widget - Quy Trình
   ========================================================================== */
.dvvb-process {
    padding: 80px 0;
}

.dvvb-process__inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

/* Background Styles */
.dvvb-process--light {
    background: var(--process-section-bg, var(--dvvb-background-light));
}

.dvvb-process--gradient {
    background: var(--process-section-bg, linear-gradient(180deg, #f5ead8 0%, #faf5ec 100%));
}

.dvvb-process--dark {
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
}

.dvvb-process--dark .dvvb-process__title {
    color: var(--dvvb-secondary-light);
}

.dvvb-process--dark .dvvb-process__desc {
    color: rgba(246, 213, 140, 0.85);
}

.dvvb-process--dark .dvvb-process__step {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
}

.dvvb-process--dark .dvvb-process__step-title {
    color: var(--dvvb-secondary-light) !important;
}

.dvvb-process--dark .dvvb-process__step-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* Header */
.dvvb-process__header {
    text-align: center;
    margin-bottom: 50px;
}

.dvvb-process__title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
    line-height: 1.3;
}

.dvvb-process__desc {
    font-size: 17px;
    color: var(--dvvb-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Steps Grid */
.dvvb-process__grid {
    display: grid;
    gap: 24px;
}

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

.dvvb-process__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.dvvb-process__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Step Card */
.dvvb-process__step {
    background: var(--process-card-bg, var(--dvvb-white));
    border-radius: var(--dvvb-radius);
    padding: 30px 25px;
    box-shadow: 0 4px 25px rgba(123, 74, 18, 0.08);
    border: 1px solid rgba(232, 224, 213, 0.5);
    transition: var(--dvvb-transition);
    position: relative;
}

.dvvb-process__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(123, 74, 18, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Number Badge */
.dvvb-process__number {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--process-number-bg, linear-gradient(145deg, var(--process-number, #d4863a), #c67830));
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 3px 12px rgba(212, 134, 58, 0.3);
    transition: var(--dvvb-transition);
}

.dvvb-process__step:hover .dvvb-process__number {
    transform: scale(1.06);
    box-shadow: 0 5px 18px rgba(212, 134, 58, 0.4);
}

.dvvb-process__number span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dvvb-white);
}

/* Process Number Size Variants */
.dvvb-process--number-small .dvvb-process__number {
    width: 40px;
    height: 40px;
}
.dvvb-process--number-small .dvvb-process__number span {
    font-size: 16px;
}

.dvvb-process--number-medium .dvvb-process__number {
    width: 46px;
    height: 46px;
}
.dvvb-process--number-medium .dvvb-process__number span {
    font-size: 18px;
}

.dvvb-process--number-large .dvvb-process__number {
    width: 56px;
    height: 56px;
}
.dvvb-process--number-large .dvvb-process__number span {
    font-size: 22px;
}

.dvvb-process--number-xlarge .dvvb-process__number {
    width: 70px;
    height: 70px;
}
.dvvb-process--number-xlarge .dvvb-process__number span {
    font-size: 28px;
}

/* Step Content */
.dvvb-process__step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--process-title, var(--dvvb-primary));
    margin: 0 0 12px;
    line-height: 1.4;
}

.dvvb-process__step-desc {
    font-size: 14px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.7;
}

/* Process Responsive */
@media (max-width: 992px) {
    .dvvb-process__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dvvb-process__title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .dvvb-process {
        padding: 60px 0;
    }

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

    .dvvb-process__title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .dvvb-process {
        padding: 50px 0;
    }

    .dvvb-process__grid--2,
    .dvvb-process__grid--3,
    .dvvb-process__grid--4 {
        grid-template-columns: 1fr;
    }

    .dvvb-process__step {
        padding: 25px 20px;
    }

    .dvvb-process__number {
        width: 44px;
        height: 44px;
    }

    .dvvb-process__number span {
        font-size: 18px;
    }

    .dvvb-process__step-title {
        font-size: 16px;
    }
}

/* Hide Elementor Dividers Completely */
.elementor-widget-divider,
.elementor-widget-divider .elementor-widget-container,
.elementor-widget-divider .elementor-divider,
.elementor-widget-divider .elementor-divider-separator {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
}

/* Also hide any spacer widgets that might be redundant */
.elementor-widget-spacer.elementor-hidden-desktop {
    display: none !important;
}

/* ========================================
   Contact Page Widget
======================================== */
.dvvb-contact-page {
    padding: 80px 0;
}

.dvvb-contact-page__inner {
    max-width: var(--dvvb-container-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding);
}

/* Background Styles */
.dvvb-contact-page--light {
    background: var(--cp-section-bg, var(--dvvb-background-light));
}

.dvvb-contact-page--gradient {
    background: var(--cp-section-bg, linear-gradient(180deg, #f5ead8 0%, #faf5ec 100%));
}

.dvvb-contact-page--dark {
    background: var(--cp-section-bg, linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%));
}

.dvvb-contact-page--dark .dvvb-contact-page__title,
.dvvb-contact-page--dark .dvvb-contact-page__company-name {
    color: var(--dvvb-secondary-light);
}

.dvvb-contact-page--dark .dvvb-contact-page__desc,
.dvvb-contact-page--dark .dvvb-contact-page__tax {
    color: rgba(246, 213, 140, 0.85);
}

.dvvb-contact-page--dark .dvvb-contact-page__card {
    background: var(--cp-card-bg, rgba(255, 255, 255, 0.08));
    border-color: rgba(212, 175, 55, 0.25);
}

.dvvb-contact-page--dark .dvvb-contact-page__card-title {
    color: var(--dvvb-secondary-light);
}

.dvvb-contact-page--dark .dvvb-contact-page__card-text,
.dvvb-contact-page--dark .dvvb-contact-page__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Header */
.dvvb-contact-page__header {
    text-align: center;
    margin-bottom: 50px;
}

.dvvb-contact-page__title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
    line-height: 1.3;
}

.dvvb-contact-page__desc {
    font-size: 17px;
    color: var(--dvvb-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content Layout */
.dvvb-contact-page__content {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.dvvb-contact-page--grid .dvvb-contact-page__content {
    flex-direction: row;
}

.dvvb-contact-page--single .dvvb-contact-page__content {
    flex-direction: column;
}

.dvvb-contact-page__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dvvb-contact-page--grid .dvvb-contact-page__map {
    flex: 1;
}

.dvvb-contact-page--single .dvvb-contact-page__map {
    width: 100%;
    min-height: 350px;
}

/* Company Info */
.dvvb-contact-page__company {
    margin-bottom: 20px;
}

.dvvb-contact-page__company-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 6px;
}

.dvvb-contact-page__tax {
    font-size: 14px;
    color: var(--dvvb-text-light);
    margin: 0;
}

/* Contact Cards */
.dvvb-contact-page__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.dvvb-contact-page__card {
    background: var(--cp-card-bg, var(--dvvb-white));
    border-radius: var(--dvvb-radius);
    padding: 20px;
    border: 1px solid rgba(232, 224, 213, 0.6);
    display: flex;
    gap: 15px;
    transition: var(--dvvb-transition);
    align-items: center;
    min-height: 90px;
}

.dvvb-contact-page__card:hover {
    box-shadow: 0 5px 20px rgba(123, 74, 18, 0.08);
    border-color: var(--dvvb-secondary);
}

.dvvb-contact-page__card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cp-icon-bg, linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent)));
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.dvvb-contact-page__card-icon i,
.dvvb-contact-page__card-icon svg {
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
    color: var(--dvvb-primary-dark);
    line-height: 1;
}

.dvvb-contact-page__card-content {
    flex: 1;
    min-width: 0;
}

.dvvb-contact-page__card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dvvb-primary);
    margin: 0 0 4px;
    white-space: nowrap;
}

.dvvb-contact-page__card-value {
    font-size: 14px;
    color: var(--dvvb-text);
    margin: 0;
    line-height: 1.5;
}

.dvvb-contact-page__card-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dvvb-primary);
    text-decoration: none !important;
    transition: var(--dvvb-transition);
    white-space: nowrap;
}

.dvvb-contact-page__card-link:hover,
.dvvb-contact-page__card-link:focus,
.dvvb-contact-page__card-link:active {
    color: var(--dvvb-secondary);
    text-decoration: none !important;
}

/* Social Media */
.dvvb-contact-page__social {
    margin-top: auto;
    padding-top: 20px;
}

.dvvb-contact-page__social-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
}

.dvvb-contact-page__social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dvvb-contact-page__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    background: var(--dvvb-white);
    color: var(--dvvb-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--dvvb-transition);
    border: 1px solid rgba(232, 224, 213, 0.6);
}

.dvvb-contact-page__social-link span {
    text-decoration: none !important;
}

.dvvb-contact-page__social-link i,
.dvvb-contact-page__social-link .dvvb-zalo-icon {
    font-size: 16px;
}

.dvvb-contact-page__social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dvvb-contact-page__social-link--facebook {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.dvvb-contact-page__social-link--facebook:hover {
    background: #0d65d9;
}

.dvvb-contact-page__social-link--zalo {
    background: #0068ff;
    color: white;
    border-color: #0068ff;
}

.dvvb-contact-page__social-link--zalo:hover {
    background: #0054cc;
}

.dvvb-zalo-icon {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
}

/* CTA Button */
.dvvb-contact-page__cta {
    margin-top: 15px;
}

.dvvb-contact-page__social + .dvvb-contact-page__cta {
    margin-top: 15px;
}

.dvvb-contact-page__cards + .dvvb-contact-page__cta {
    margin-top: auto;
    padding-top: 20px;
}

.dvvb-contact-page__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--dvvb-secondary), var(--dvvb-accent));
    color: var(--dvvb-primary-dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--dvvb-transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.dvvb-contact-page__cta-btn:hover,
.dvvb-contact-page__cta-btn:focus,
.dvvb-contact-page__cta-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--dvvb-primary-dark);
    text-decoration: none !important;
}

.dvvb-contact-page__cta-btn i {
    font-size: 16px;
}

/* Map */
.dvvb-contact-page__map {
    border-radius: var(--dvvb-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(123, 74, 18, 0.1);
    display: flex;
    flex-direction: column;
}

.dvvb-contact-page__map iframe {
    width: 100%;
    flex: 1;
    min-height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .dvvb-contact-page__content {
        flex-direction: column;
    }

    .dvvb-contact-page--grid .dvvb-contact-page__map {
        min-height: 350px;
    }

    .dvvb-contact-page__map iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .dvvb-contact-page {
        padding: 60px 0;
    }

    .dvvb-contact-page__title {
        font-size: 28px;
    }

    .dvvb-contact-page__card-link {
        font-size: 15px;
        white-space: normal;
    }
}

@media (max-width: 540px) {
    .dvvb-contact-page__cards {
        grid-template-columns: 1fr;
    }

    .dvvb-contact-page__card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .dvvb-contact-page__title {
        font-size: 24px;
    }

    .dvvb-contact-page__desc {
        font-size: 15px;
    }

    .dvvb-contact-page__company-name {
        font-size: 18px;
    }

    .dvvb-contact-page__cta-btn {
        width: 100%;
        justify-content: center;
    }

    .dvvb-contact-page__map iframe {
        min-height: 280px;
    }
}

/* ==========================================================================
   Promo Banner - Single Post Top Banner
   ========================================================================== */
.dvvb-promo-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f8f9fc 0%, #e8eef8 50%, #f0f4fa 100%);
    padding: 40px 0;
    overflow: hidden;
}

.dvvb-promo-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.dvvb-promo-banner__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(123, 74, 18, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237b4a12' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dvvb-promo-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dvvb-promo-banner__content {
    flex: 1;
    max-width: 550px;
}

.dvvb-promo-banner__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dvvb-primary, #7b4a12);
    margin-bottom: 12px;
}

.dvvb-promo-banner__subtitle i {
    font-size: 16px;
    color: var(--dvvb-secondary, #d4af37);
}

.dvvb-promo-banner__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dvvb-primary, #7b4a12);
    margin: 0 0 15px;
    line-height: 1.3;
}

.dvvb-promo-banner__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px;
}

.dvvb-promo-banner__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dvvb-promo-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--dvvb-secondary, #d4af37), var(--dvvb-accent, #c9a227));
    color: var(--dvvb-primary-dark, #5a3710) !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.dvvb-promo-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    color: var(--dvvb-primary-dark, #5a3710) !important;
}

.dvvb-promo-banner__btn i {
    font-size: 18px;
}

.dvvb-promo-banner__extra {
    font-size: 14px;
    color: var(--dvvb-primary, #7b4a12);
    font-weight: 500;
}

.dvvb-promo-banner__visual {
    flex-shrink: 0;
}

.dvvb-promo-banner__image {
    max-width: 350px;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
}

/* Phone Mockup */
.dvvb-promo-banner__phone-mockup {
    width: 220px;
    height: 340px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border-radius: 35px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.dvvb-promo-banner__phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 10px;
}

.dvvb-promo-banner__phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 10px 20px;
}

.dvvb-promo-banner__phone-screen i {
    font-size: 40px;
    color: var(--dvvb-secondary, #d4af37);
}

.dvvb-promo-banner__phone-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dvvb-primary, #7b4a12);
}

/* Phone buttons container */
.dvvb-promo-banner__phone-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.dvvb-promo-banner__phone-number {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--dvvb-primary, #7b4a12);
    padding: 10px 16px;
    border-radius: 25px;
    white-space: nowrap;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dvvb-promo-banner__phone-number i {
    font-size: 12px;
}

.dvvb-promo-banner__phone-number:hover {
    background: var(--dvvb-primary-dark, #5a3710);
    color: #ffffff !important;
    transform: scale(1.05);
}

/* Phone number display */
.dvvb-promo-banner__phone-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--dvvb-primary, #7b4a12);
    margin-top: 5px;
}

/* Zalo Button */
.dvvb-promo-banner__zalo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #0068ff !important;
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 0;
    white-space: nowrap;
}

.dvvb-promo-banner__zalo-btn span {
    color: #ffffff !important;
}

.dvvb-promo-banner__zalo-btn:hover,
.dvvb-promo-banner__zalo-btn:hover span,
.dvvb-promo-banner__zalo-btn:visited,
.dvvb-promo-banner__zalo-btn:visited span,
.dvvb-promo-banner__zalo-btn:active,
.dvvb-promo-banner__zalo-btn:active span,
.dvvb-promo-banner__zalo-btn:focus,
.dvvb-promo-banner__zalo-btn:focus span {
    background: #0052cc !important;
    color: #ffffff !important;
}

.dvvb-promo-banner__zalo-btn:hover {
    transform: scale(1.05);
}

.dvvb-promo-banner__zalo-icon {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .dvvb-promo-banner {
        padding: 30px 0;
    }

    .dvvb-promo-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .dvvb-promo-banner__content {
        max-width: 100%;
    }

    .dvvb-promo-banner__title {
        font-size: 24px;
    }

    .dvvb-promo-banner__actions {
        justify-content: center;
    }

    .dvvb-promo-banner__visual {
        display: none;
    }
}

/* ==========================================================================
   Single Post Widget - VNExpress Style
   ========================================================================== */
/* Force Elementor section full width for single post */
.elementor-widget-dvvb_single_post,
.elementor-widget-dvvb_single_post > .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove gold border/line from Elementor containers on single post */
.elementor-location-single .e-con,
.elementor-location-single .e-con-full,
.elementor-location-single .elementor-element,
.elementor-location-single .elementor-widget-container {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Remove any extra spacing in single post template */
.elementor-location-single #primary,
.elementor-location-single .site-main,
.elementor-location-single .content-area {
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide any gold divider lines */
.elementor-location-single::after,
.elementor-location-single::before,
.elementor-location-single .e-con::after,
.elementor-location-single .e-con::before {
    display: none !important;
}

/* Remove ALL borders and lines from single post page */
.single-post #primary,
.single-post .site-main,
.single-post .content-area,
.single-post .ast-article-single,
.single .site-main,
.single #primary,
body.single-post .site-content,
body.single-post #content {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

/* Remove margin from Astra separate container on single post */
.ast-separate-container #primary,
.ast-separate-container.ast-right-sidebar #primary,
.ast-separate-container.ast-left-sidebar #primary {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove gold accent line from Astra theme - only target ::after pseudo elements */
.ast-article-single::after,
.ast-article-post::after,
#primary::after,
.site-main::after {
    border: none !important;
    content: none !important;
    display: none !important;
}

/* Remove borders but keep elements visible */
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure no background box showing */
.elementor-location-single .elementor-widget-container {
    background: transparent !important;
}

.dvvb-single-post {
    --sp-title-color: var(--dvvb-primary, #7b4a12);
    --sp-text-color: #333333;
    --sp-meta-color: #757575;
    --sp-accent-color: var(--dvvb-primary, #7b4a12);
    --sp-secondary-color: var(--dvvb-secondary, #d4af37);
    --sp-max-width: 1140px;
    background: var(--dvvb-background-light, #faf8f5);
    padding: 60px 0;
    /* Full-width breakout */
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    overflow-x: hidden;
}

.dvvb-single-post__inner {
    width: 100%;
    max-width: var(--sp-max-width);
    margin: 0 auto;
    padding: 0 var(--dvvb-container-padding, 20px);
    box-sizing: border-box;
}

/* Breadcrumb */
.dvvb-single-post__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sp-meta-color);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dvvb-single-post__breadcrumb a {
    color: var(--sp-accent-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dvvb-single-post__breadcrumb a:hover {
    text-decoration: underline;
}

.dvvb-single-post__breadcrumb-sep {
    font-size: 10px;
    color: var(--sp-accent-color);
    opacity: 0.6;
}

/* Header */
.dvvb-single-post__header {
    margin-bottom: 25px;
}

.dvvb-single-post__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sp-accent-color);
    background: rgba(123, 74, 18, 0.08);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.dvvb-single-post__title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--sp-title-color);
    margin: 0 0 18px;
}

.dvvb-single-post__excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: var(--sp-text-color);
    font-weight: 500;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

/* Meta */
.dvvb-single-post__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--sp-meta-color);
}

.dvvb-single-post__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dvvb-single-post__meta-item i {
    font-size: 14px;
    color: var(--sp-accent-color);
}

/* Share Buttons */
.dvvb-single-post__share {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.dvvb-single-post__share--top {
    border-top: none;
}

.dvvb-single-post__share--bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.dvvb-single-post__share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--sp-text-color);
}

.dvvb-single-post__share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dvvb-single-post__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.dvvb-single-post__share-btn i {
    font-size: 14px;
}

.dvvb-single-post__share-btn--facebook {
    background: #1877f2;
    color: #fff;
}

.dvvb-single-post__share-btn--facebook:hover {
    background: #0d65d9;
    color: #fff;
}

.dvvb-single-post__share-btn--twitter {
    background: #000;
    color: #fff;
}

.dvvb-single-post__share-btn--twitter:hover {
    background: #333;
    color: #fff;
}

.dvvb-single-post__share-btn--linkedin {
    background: #0077b5;
    color: #fff;
}

.dvvb-single-post__share-btn--linkedin:hover {
    background: #005885;
    color: #fff;
}

.dvvb-single-post__share-btn--copy {
    background: #f0f0f0;
    color: #333;
}

.dvvb-single-post__share-btn--copy:hover {
    background: #e0e0e0;
}

/* Featured Image */
.dvvb-single-post__featured-image {
    margin: 0 auto 30px;
    max-width: 720px;
    text-align: center;
}

.dvvb-single-post__featured-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dvvb-single-post__image-caption {
    font-size: 13px;
    color: var(--sp-meta-color);
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    padding: 0 20px;
}

/* Content */
.dvvb-single-post__content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--sp-text-color);
}

.dvvb-single-post__content p {
    margin: 0 0 20px;
}

.dvvb-single-post__content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--sp-title-color);
    margin: 35px 0 18px;
    line-height: 1.4;
}

.dvvb-single-post__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sp-title-color);
    margin: 30px 0 15px;
    line-height: 1.4;
}

.dvvb-single-post__content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sp-title-color);
    margin: 25px 0 12px;
}

.dvvb-single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.dvvb-single-post__content blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(123, 74, 18, 0.05), rgba(212, 175, 55, 0.05));
    border-left: 4px solid var(--sp-accent-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--sp-text-color);
}

.dvvb-single-post__content blockquote p:last-child {
    margin-bottom: 0;
}

.dvvb-single-post__content ul,
.dvvb-single-post__content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.dvvb-single-post__content li {
    margin-bottom: 10px;
}

.dvvb-single-post__content a {
    color: var(--sp-accent-color);
    text-decoration: underline;
}

.dvvb-single-post__content a:hover {
    text-decoration: none;
}

.dvvb-single-post__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.dvvb-single-post__content table th,
.dvvb-single-post__content table td {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.dvvb-single-post__content table th {
    background: #f9f9f9;
    font-weight: 600;
}

.dvvb-single-post__content table tr:nth-child(even) {
    background: #fafafa;
}

/* Tags */
.dvvb-single-post__tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.dvvb-single-post__tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--sp-text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dvvb-single-post__tags-label i {
    color: var(--sp-accent-color);
}

.dvvb-single-post__tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--sp-accent-color);
    background: rgba(123, 74, 18, 0.08);
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.dvvb-single-post__tag:hover {
    background: var(--sp-accent-color);
    color: #fff;
}

/* Author Box */
.dvvb-single-post__author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid rgba(123, 74, 18, 0.15);
    border-left: 4px solid var(--sp-accent-color);
}

.dvvb-single-post__author-avatar {
    flex-shrink: 0;
}

.dvvb-single-post__author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    padding: 5px;
}

.dvvb-single-post__author-info {
    flex: 1;
}

.dvvb-single-post__author-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sp-meta-color);
    display: block;
    margin-bottom: 5px;
}

.dvvb-single-post__author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--sp-title-color);
    margin: 0 0 8px;
}

.dvvb-single-post__author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sp-text-color);
    margin: 0;
}

/* Related Posts */
.dvvb-single-post__related {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--sp-accent-color);
}

.dvvb-single-post__related-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sp-title-color);
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dvvb-single-post__related-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--sp-accent-color);
    border-radius: 2px;
}

.dvvb-single-post__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.dvvb-single-post__related-item {
    display: flex;
    gap: 15px;
}

.dvvb-single-post__related-thumb {
    flex-shrink: 0;
    width: 145px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.dvvb-single-post__related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dvvb-single-post__related-item:hover .dvvb-single-post__related-thumb img {
    transform: scale(1.05);
}

.dvvb-single-post__related-content {
    flex: 1;
    min-width: 0;
}

.dvvb-single-post__related-item-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 8px;
}

.dvvb-single-post__related-item-title a {
    color: var(--sp-title-color);
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.dvvb-single-post__related-item-title a:hover {
    color: var(--sp-accent-color);
}

.dvvb-single-post__related-date {
    font-size: 12px;
    color: var(--sp-meta-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dvvb-single-post__related-date i {
    font-size: 11px;
    color: var(--sp-accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .dvvb-single-post {
        padding: 30px 0;
    }

    .dvvb-single-post__title {
        font-size: 26px;
    }

    .dvvb-single-post__excerpt {
        font-size: 16px;
    }

    .dvvb-single-post__content {
        font-size: 16px;
    }

    .dvvb-single-post__meta {
        gap: 12px;
    }

    .dvvb-single-post__share-btn span {
        display: none;
    }

    .dvvb-single-post__share-btn {
        padding: 10px;
    }

    .dvvb-single-post__author-box {
        flex-direction: column;
        text-align: center;
    }

    .dvvb-single-post__related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dvvb-single-post__title {
        font-size: 22px;
    }

    .dvvb-single-post__related-item {
        flex-direction: column;
    }

    .dvvb-single-post__related-thumb {
        width: 100%;
        height: 180px;
    }
}

/* ==========================================================================
   Service Detail Widget - Premium Design (Full Width)
   ========================================================================== */
.dvvb-service-detail {
    width: 100%;
    background: var(--dvvb-background-light);
}

/* Content Container - 1240px */
.dvvb-service-detail__content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ===== HEADER - Full Width Hero ===== */
.dvvb-service-detail__header {
    width: 100%;
    padding: 70px 20px;
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, #5a3710 50%, var(--dvvb-primary-dark) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.dvvb-service-detail__header::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.dvvb-service-detail__header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.dvvb-service-detail__header-inner {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dvvb-service-detail__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.dvvb-service-detail__title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--dvvb-secondary), var(--dvvb-secondary-light));
    margin: 25px auto 0;
    border-radius: 3px;
}

.dvvb-service-detail__subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTIONS - Premium Cards ===== */
.dvvb-service-detail__section {
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.dvvb-service-detail__section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dvvb-primary);
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    border-bottom: none;
    position: relative;
}

.dvvb-service-detail__section-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--dvvb-secondary), transparent);
    border-radius: 2px;
}

.dvvb-service-detail__section-title i {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dvvb-primary-dark);
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

/* ===== AUDIENCE - Highlighted Cards ===== */
.dvvb-service-detail__audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dvvb-service-detail__audience-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfaf5 100%);
    border-radius: 16px;
    border-left: 5px solid var(--dvvb-secondary);
    line-height: 1.8;
    color: var(--dvvb-text);
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(123, 74, 18, 0.08);
    transition: all 0.3s ease;
}

.dvvb-service-detail__audience-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(123, 74, 18, 0.12);
    border-left-color: var(--dvvb-primary);
}

.dvvb-service-detail__check-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1.8;
    filter: drop-shadow(0 2px 4px rgba(0, 200, 100, 0.3));
}

/* ===== FEATURES - Gradient Cards ===== */
.dvvb-service-detail__features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dvvb-service-detail__feature-card {
    padding: 35px 25px;
    background: linear-gradient(145deg, #ffffff 0%, #fef9f0 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(123, 74, 18, 0.1);
}

.dvvb-service-detail__feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dvvb-secondary), var(--dvvb-primary), var(--dvvb-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dvvb-service-detail__feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(123, 74, 18, 0.2);
    border-color: var(--dvvb-secondary);
}

.dvvb-service-detail__feature-card:hover::before {
    opacity: 1;
}

.dvvb-service-detail__feature-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.dvvb-service-detail__feature-card:hover .dvvb-service-detail__feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.dvvb-service-detail__feature-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dvvb-service-detail__feature-desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===== CONDITIONS - Numbered Timeline ===== */
.dvvb-service-detail__conditions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 30px;
}

.dvvb-service-detail__conditions-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--dvvb-secondary) 0%, var(--dvvb-primary) 100%);
    border-radius: 2px;
}

.dvvb-service-detail__condition-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px 30px 25px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.dvvb-service-detail__condition-item:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
    border-radius: 0 16px 16px 0;
}

.dvvb-service-detail__condition-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent));
    color: var(--dvvb-primary-dark);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
    border: 4px solid #ffffff;
}

.dvvb-service-detail__condition-content {
    flex: 1;
    padding-top: 8px;
}

.dvvb-service-detail__condition-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 10px;
}

.dvvb-service-detail__condition-desc {
    font-size: 16px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===== INTEREST SECTION - Info Box ===== */
.dvvb-service-detail__interest-intro {
    font-size: 17px;
    color: var(--dvvb-text);
    line-height: 1.8;
    margin: 0 0 25px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(123, 74, 18, 0.08) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--dvvb-secondary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.dvvb-service-detail__interest-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dvvb-service-detail__interest-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfaf5 100%);
    border-radius: 14px;
    line-height: 1.7;
    color: var(--dvvb-text);
    font-size: 16px;
    box-shadow: 0 3px 15px rgba(123, 74, 18, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.dvvb-service-detail__interest-item:hover {
    border-color: var(--dvvb-secondary);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

/* ===== DOCUMENTS - Icon Cards ===== */
.dvvb-service-detail__documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dvvb-service-detail__document-card {
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
    border-radius: 20px;
    border: 2px solid var(--dvvb-border);
    box-shadow: 0 5px 25px rgba(123, 74, 18, 0.08);
    transition: all 0.3s ease;
}

.dvvb-service-detail__document-card:hover {
    border-color: var(--dvvb-secondary);
    box-shadow: 0 10px 40px rgba(123, 74, 18, 0.12);
    transform: translateY(-5px);
}

.dvvb-service-detail__document-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px dashed rgba(212, 175, 55, 0.3);
}

.dvvb-service-detail__document-icon {
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.dvvb-service-detail__document-category {
    font-size: 18px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0;
}

.dvvb-service-detail__document-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dvvb-service-detail__document-items li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--dvvb-text);
    line-height: 1.7;
}

.dvvb-service-detail__document-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-size: 16px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== CTA SECTION - Full Width Premium Banner ===== */
.dvvb-service-detail__cta {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1f33 50%, #0a1628 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-top: 4px solid var(--dvvb-secondary);
}

.dvvb-service-detail__cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite;
}

.dvvb-service-detail__cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -40px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite 3s;
}

@keyframes floatBubble {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
    50% { transform: scale(1.15) translateY(-20px); opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 8px 50px rgba(212, 175, 55, 0.9), 0 0 30px rgba(212, 175, 55, 0.5); }
}

@keyframes glowPulseBlue {
    0%, 100% { box-shadow: 0 8px 30px rgba(0, 104, 255, 0.5); }
    50% { box-shadow: 0 8px 50px rgba(0, 104, 255, 0.9), 0 0 30px rgba(0, 104, 255, 0.5); }
}

.dvvb-service-detail__cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dvvb-service-detail__cta-content {
    margin-bottom: 35px;
}

.dvvb-service-detail__cta-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dvvb-secondary-light);
    margin: 0 0 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dvvb-service-detail__cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.dvvb-service-detail__cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dvvb-service-detail__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.dvvb-service-detail__cta-btn--call {
    background: linear-gradient(145deg, var(--dvvb-secondary), #f0d060, var(--dvvb-secondary));
    background-size: 200% 200%;
    color: var(--dvvb-primary-dark) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    animation: glowPulse 2s ease-in-out infinite, shimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.dvvb-service-detail__cta-btn--call:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.8);
    color: var(--dvvb-primary-dark) !important;
    animation: none;
}

.dvvb-service-detail__cta-btn--call i {
    font-size: 20px;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

.dvvb-service-detail__cta-btn--zalo {
    background: linear-gradient(145deg, #0088ff, #00a8ff, #0088ff) !important;
    background-size: 200% 200%;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(0, 104, 255, 0.5);
    animation: glowPulseBlue 2s ease-in-out infinite 0.5s, shimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dvvb-service-detail__cta-btn--zalo:hover {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(145deg, #0068ff, #0050dd) !important;
    box-shadow: 0 15px 50px rgba(0, 104, 255, 0.8);
    color: #ffffff !important;
    animation: none;
}

.dvvb-service-detail__zalo-icon {
    width: 24px;
    height: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .dvvb-service-detail__content {
        padding: 40px 15px;
    }

    .dvvb-service-detail__header {
        padding: 50px 15px;
    }

    .dvvb-service-detail__title {
        font-size: 32px;
    }

    .dvvb-service-detail__subtitle {
        font-size: 18px;
    }

    .dvvb-service-detail__section-title {
        font-size: 22px;
    }

    .dvvb-service-detail__section-title i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .dvvb-service-detail__features-grid,
    .dvvb-service-detail__documents-grid {
        grid-template-columns: 1fr;
    }

    .dvvb-service-detail__conditions-list {
        padding-left: 20px;
    }

    .dvvb-service-detail__conditions-list::before {
        left: 18px;
    }

    .dvvb-service-detail__cta {
        padding: 50px 15px;
    }

    .dvvb-service-detail__cta-title {
        font-size: 26px;
    }

    .dvvb-service-detail__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .dvvb-service-detail__cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dvvb-service-detail__title {
        font-size: 26px;
    }

    .dvvb-service-detail__section-title {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .dvvb-service-detail__section-title::after {
        display: none;
    }

    .dvvb-service-detail__condition-item {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
    }

    .dvvb-service-detail__conditions-list {
        padding-left: 0;
    }

    .dvvb-service-detail__conditions-list::before {
        display: none;
    }

    .dvvb-service-detail__condition-number {
        margin: 0 auto 15px;
    }

    .dvvb-service-detail__condition-content {
        padding-top: 0;
    }

    .dvvb-service-detail__audience-item {
        padding: 20px;
    }

    .dvvb-service-detail__feature-card {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   Pawn Service Widget - Premium Design (Full Width)
   ========================================================================== */
.dvvb-pawn-service {
    width: 100%;
    background: linear-gradient(180deg, #faf8f5 0%, #f5ead8 100%);
}

/* Content Container - 1240px */
.dvvb-pawn-service__content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ===== HEADER - Full Width Hero ===== */
.dvvb-pawn-service__header {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, #5a3710 50%, var(--dvvb-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.dvvb-pawn-service__header::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.dvvb-pawn-service__header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.dvvb-pawn-service__header-inner {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dvvb-pawn-service__title {
    font-size: 52px;
    font-weight: 800;
    color: var(--dvvb-secondary-light);
    margin: 0 0 25px;
    line-height: 1.2;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.dvvb-pawn-service__title::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--dvvb-secondary), var(--dvvb-secondary-light));
    margin: 25px auto 0;
    border-radius: 3px;
}

.dvvb-pawn-service__subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTIONS ===== */
.dvvb-pawn-service__section {
    margin-bottom: 50px;
}

.dvvb-pawn-service__section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dvvb-primary);
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.dvvb-pawn-service__section-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--dvvb-secondary), transparent);
    border-radius: 2px;
}

.dvvb-pawn-service__section-title i {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dvvb-primary-dark);
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

/* ===== LIST STYLES ===== */
.dvvb-pawn-service__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dvvb-pawn-service__list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 28px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfaf5 100%);
    border-radius: 16px;
    border-left: 5px solid var(--dvvb-secondary);
    line-height: 1.8;
    color: var(--dvvb-text);
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(123, 74, 18, 0.08);
    transition: all 0.3s ease;
}

.dvvb-pawn-service__list-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(123, 74, 18, 0.12);
    border-left-color: var(--dvvb-primary);
}

.dvvb-pawn-service__check-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1.8;
    filter: drop-shadow(0 2px 4px rgba(0, 200, 100, 0.3));
}

/* ===== ASSETS GRID ===== */
.dvvb-pawn-service__assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 25px;
}

.dvvb-pawn-service__asset-card {
    padding: 35px 25px;
    background: linear-gradient(145deg, #ffffff 0%, #fef9f0 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(123, 74, 18, 0.1);
}

.dvvb-pawn-service__asset-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a472a, var(--dvvb-secondary), #1a472a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dvvb-pawn-service__asset-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(123, 74, 18, 0.2);
    border-color: var(--dvvb-secondary);
}

.dvvb-pawn-service__asset-card:hover::before {
    opacity: 1;
}

.dvvb-pawn-service__asset-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 18px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.dvvb-pawn-service__asset-card:hover .dvvb-pawn-service__asset-icon {
    transform: scale(1.15) rotate(-5deg);
}

.dvvb-pawn-service__asset-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 12px;
    line-height: 1.4;
}

.dvvb-pawn-service__asset-desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.7;
}

.dvvb-pawn-service__assets-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(123, 74, 18, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 14px;
    border-left: 4px solid var(--dvvb-primary);
    font-size: 16px;
    color: var(--dvvb-text);
    line-height: 1.7;
}

.dvvb-pawn-service__assets-note i {
    font-size: 24px;
    color: var(--dvvb-primary);
    flex-shrink: 0;
}

/* ===== TERMS GRID ===== */
.dvvb-pawn-service__terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dvvb-pawn-service__term-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(123, 74, 18, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dvvb-pawn-service__term-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 74, 18, 0.12);
    border-color: var(--dvvb-secondary);
}

.dvvb-pawn-service__term-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.dvvb-pawn-service__term-text {
    font-size: 15px;
    color: var(--dvvb-text);
    margin: 0;
    line-height: 1.7;
}

/* ===== DOCUMENTS BOX ===== */
.dvvb-pawn-service__documents-box {
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #fef9f0 100%);
    border-radius: 20px;
    border: 2px solid var(--dvvb-border);
    box-shadow: 0 5px 25px rgba(123, 74, 18, 0.08);
}

.dvvb-pawn-service__documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dvvb-pawn-service__documents-list li {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    color: var(--dvvb-text);
    line-height: 1.7;
}

.dvvb-pawn-service__documents-list li::before {
    content: "📄";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}

/* ===== COMMITMENT SECTION ===== */
.dvvb-pawn-service__commitment {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, var(--dvvb-primary-dark) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.dvvb-pawn-service__commitment::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.dvvb-pawn-service__commitment-inner {
    position: relative;
    z-index: 1;
}

.dvvb-pawn-service__commitment-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dvvb-secondary-light);
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dvvb-pawn-service__commitment-title i {
    font-size: 28px;
    color: var(--dvvb-secondary);
}

.dvvb-pawn-service__commitment-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.dvvb-pawn-service__commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.dvvb-pawn-service__commitment-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.dvvb-pawn-service__commitment-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* ===== CTA SECTION - Full Width ===== */
.dvvb-pawn-service__cta {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1f33 50%, #0a1628 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--dvvb-secondary);
}

.dvvb-pawn-service__cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite;
}

.dvvb-pawn-service__cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -40px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite 3s;
}

.dvvb-pawn-service__cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dvvb-pawn-service__cta-content {
    margin-bottom: 35px;
}

.dvvb-pawn-service__cta-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--dvvb-secondary-light);
    margin: 0 0 15px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.dvvb-pawn-service__cta-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dvvb-pawn-service__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dvvb-pawn-service__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.dvvb-pawn-service__cta-btn--call {
    background: linear-gradient(145deg, var(--dvvb-secondary), #f0d060, var(--dvvb-secondary));
    background-size: 200% 200%;
    color: var(--dvvb-primary-dark) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    animation: glowPulse 2s ease-in-out infinite, shimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dvvb-pawn-service__cta-btn--call:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.8);
    color: var(--dvvb-primary-dark) !important;
    animation: none;
}

.dvvb-pawn-service__cta-btn--call i {
    font-size: 20px;
    animation: ring 1.5s ease-in-out infinite;
}

.dvvb-pawn-service__cta-btn--zalo {
    background: linear-gradient(145deg, #0088ff, #00a8ff, #0088ff) !important;
    background-size: 200% 200%;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(0, 104, 255, 0.5);
    animation: glowPulseBlue 2s ease-in-out infinite 0.5s, shimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dvvb-pawn-service__cta-btn--zalo:hover {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(145deg, #0068ff, #0050dd) !important;
    box-shadow: 0 15px 50px rgba(0, 104, 255, 0.8);
    color: #ffffff !important;
    animation: none;
}

.dvvb-pawn-service__zalo-icon {
    width: 24px;
    height: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .dvvb-pawn-service__assets-grid,
    .dvvb-pawn-service__terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dvvb-pawn-service__content {
        padding: 40px 15px;
    }

    .dvvb-pawn-service__header {
        padding: 60px 15px;
    }

    .dvvb-pawn-service__title {
        font-size: 36px;
    }

    .dvvb-pawn-service__subtitle {
        font-size: 18px;
    }

    .dvvb-pawn-service__section-title {
        font-size: 22px;
    }

    .dvvb-pawn-service__section-title i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .dvvb-pawn-service__assets-grid,
    .dvvb-pawn-service__terms-grid {
        grid-template-columns: 1fr;
    }

    .dvvb-pawn-service__commitment {
        padding: 30px 20px;
    }

    .dvvb-pawn-service__commitment-items {
        gap: 25px;
    }

    .dvvb-pawn-service__cta {
        padding: 50px 15px;
    }

    .dvvb-pawn-service__cta-title {
        font-size: 26px;
    }

    .dvvb-pawn-service__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .dvvb-pawn-service__cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dvvb-pawn-service__title {
        font-size: 28px;
    }

    .dvvb-pawn-service__section-title {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .dvvb-pawn-service__section-title::after {
        display: none;
    }

    .dvvb-pawn-service__list-item {
        padding: 18px 20px;
    }

    .dvvb-pawn-service__commitment-items {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   Loan Renewal Widget - Premium Design (Full Width)
   ========================================================================== */
.dvvb-loan-renewal {
    width: 100%;
    background: var(--dvvb-background-light);
}

/* Content Container - 1240px */
.dvvb-loan-renewal__content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ===== HEADER - Full Width Hero ===== */
.dvvb-loan-renewal__header {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dvvb-primary) 0%, #5a3710 50%, var(--dvvb-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.dvvb-loan-renewal__header::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.dvvb-loan-renewal__header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.dvvb-loan-renewal__header-inner {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dvvb-loan-renewal__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px;
    line-height: 1.2;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.dvvb-loan-renewal__title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--dvvb-secondary), var(--dvvb-secondary-light));
    margin: 25px auto 0;
    border-radius: 3px;
}

.dvvb-loan-renewal__subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTIONS ===== */
.dvvb-loan-renewal__section {
    margin-bottom: 50px;
}

.dvvb-loan-renewal__section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dvvb-primary);
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.dvvb-loan-renewal__section-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--dvvb-secondary), transparent);
    border-radius: 2px;
}

.dvvb-loan-renewal__section-title i {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dvvb-primary-dark);
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

/* ===== INTRO BOX ===== */
.dvvb-loan-renewal__intro-box {
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(123, 74, 18, 0.06) 100%);
    border-radius: 20px;
    border-left: 5px solid var(--dvvb-secondary);
}

.dvvb-loan-renewal__intro-box p {
    font-size: 17px;
    color: var(--dvvb-text);
    line-height: 1.8;
    margin: 0;
}

/* ===== LIST STYLES ===== */
.dvvb-loan-renewal__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dvvb-loan-renewal__list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 28px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfaf5 100%);
    border-radius: 16px;
    border-left: 5px solid var(--dvvb-secondary);
    line-height: 1.8;
    color: var(--dvvb-text);
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(123, 74, 18, 0.08);
    transition: all 0.3s ease;
}

.dvvb-loan-renewal__list-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(123, 74, 18, 0.12);
    border-left-color: var(--dvvb-primary);
}

.dvvb-loan-renewal__check-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1.8;
    filter: drop-shadow(0 2px 4px rgba(0, 200, 100, 0.3));
}

/* ===== FEATURES GRID ===== */
.dvvb-loan-renewal__features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dvvb-loan-renewal__feature-card {
    padding: 35px 25px;
    background: linear-gradient(145deg, #ffffff 0%, #fef9f0 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(123, 74, 18, 0.1);
}

.dvvb-loan-renewal__feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dvvb-secondary), var(--dvvb-primary), var(--dvvb-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dvvb-loan-renewal__feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(123, 74, 18, 0.2);
    border-color: var(--dvvb-secondary);
}

.dvvb-loan-renewal__feature-card:hover::before {
    opacity: 1;
}

.dvvb-loan-renewal__feature-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.dvvb-loan-renewal__feature-card:hover .dvvb-loan-renewal__feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.dvvb-loan-renewal__feature-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dvvb-primary);
    margin: 0 0 15px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dvvb-loan-renewal__feature-desc {
    font-size: 15px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===== PROCESS TIMELINE ===== */
.dvvb-loan-renewal__process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 30px;
}

.dvvb-loan-renewal__process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--dvvb-secondary) 0%, var(--dvvb-primary) 100%);
    border-radius: 2px;
}

.dvvb-loan-renewal__process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px 30px 25px 0;
    position: relative;
    transition: all 0.3s ease;
}

.dvvb-loan-renewal__process-step:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
    border-radius: 0 16px 16px 0;
}

.dvvb-loan-renewal__process-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(145deg, var(--dvvb-secondary), var(--dvvb-accent));
    color: var(--dvvb-primary-dark);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
    border: 4px solid #ffffff;
}

.dvvb-loan-renewal__process-content {
    flex: 1;
    padding-top: 8px;
}

.dvvb-loan-renewal__process-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0 0 10px;
}

.dvvb-loan-renewal__process-desc {
    font-size: 16px;
    color: var(--dvvb-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ===== DOCUMENTS GRID ===== */
.dvvb-loan-renewal__documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dvvb-loan-renewal__document-card {
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
    border-radius: 20px;
    border: 2px solid var(--dvvb-border);
    box-shadow: 0 5px 25px rgba(123, 74, 18, 0.08);
    transition: all 0.3s ease;
}

.dvvb-loan-renewal__document-card:hover {
    border-color: var(--dvvb-secondary);
    box-shadow: 0 10px 40px rgba(123, 74, 18, 0.12);
    transform: translateY(-5px);
}

.dvvb-loan-renewal__document-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px dashed rgba(212, 175, 55, 0.3);
}

.dvvb-loan-renewal__document-icon {
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.dvvb-loan-renewal__document-category {
    font-size: 18px;
    font-weight: 700;
    color: var(--dvvb-primary);
    margin: 0;
}

.dvvb-loan-renewal__document-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dvvb-loan-renewal__document-items li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--dvvb-text);
    line-height: 1.7;
}

.dvvb-loan-renewal__document-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-size: 16px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== CTA SECTION - Full Width ===== */
.dvvb-loan-renewal__cta {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0d1f33 50%, #0a1628 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--dvvb-secondary);
}

.dvvb-loan-renewal__cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite;
}

.dvvb-loan-renewal__cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -40px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite 3s;
}

.dvvb-loan-renewal__cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dvvb-loan-renewal__cta-content {
    margin-bottom: 35px;
}

.dvvb-loan-renewal__cta-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dvvb-secondary-light);
    margin: 0 0 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dvvb-loan-renewal__cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dvvb-loan-renewal__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dvvb-loan-renewal__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.dvvb-loan-renewal__cta-btn--call {
    background: linear-gradient(145deg, var(--dvvb-secondary), #f0d060, var(--dvvb-secondary));
    background-size: 200% 200%;
    color: var(--dvvb-primary-dark) !important;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    animation: glowPulse 2s ease-in-out infinite, shimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dvvb-loan-renewal__cta-btn--call:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.8);
    color: var(--dvvb-primary-dark) !important;
    animation: none;
}

.dvvb-loan-renewal__cta-btn--call i {
    font-size: 20px;
    animation: ring 1.5s ease-in-out infinite;
}

.dvvb-loan-renewal__cta-btn--zalo {
    background: linear-gradient(145deg, #0088ff, #00a8ff, #0088ff) !important;
    background-size: 200% 200%;
    color: #ffffff !important;
    box-shadow: 0 8px 30px rgba(0, 104, 255, 0.5);
    animation: glowPulseBlue 2s ease-in-out infinite 0.5s, shimmer 3s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dvvb-loan-renewal__cta-btn--zalo:hover {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(145deg, #0068ff, #0050dd) !important;
    box-shadow: 0 15px 50px rgba(0, 104, 255, 0.8);
    color: #ffffff !important;
    animation: none;
}

.dvvb-loan-renewal__zalo-icon {
    width: 24px;
    height: 24px;
}

/* Elementor Floating Buttons: hide stray empty chat bubble */
.e-contact-buttons .e-contact-buttons__message-bubble {
    display: none !important;
}

.e-contact-buttons .e-contact-buttons__chat-button-text:empty,
.e-contact-buttons .e-contact-buttons__chat-button-text:empty::before,
.e-contact-buttons .e-contact-buttons__chat-button-text:empty::after {
    display: none !important;
    content: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .dvvb-loan-renewal__documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dvvb-loan-renewal__content {
        padding: 40px 15px;
    }

    .dvvb-loan-renewal__header {
        padding: 60px 15px;
    }

    .dvvb-loan-renewal__title {
        font-size: 32px;
    }

    .dvvb-loan-renewal__subtitle {
        font-size: 18px;
    }

    .dvvb-loan-renewal__section-title {
        font-size: 22px;
    }

    .dvvb-loan-renewal__section-title i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .dvvb-loan-renewal__features-grid,
    .dvvb-loan-renewal__documents-grid {
        grid-template-columns: 1fr;
    }

    .dvvb-loan-renewal__process-timeline {
        padding-left: 20px;
    }

    .dvvb-loan-renewal__process-timeline::before {
        left: 18px;
    }

    .dvvb-loan-renewal__cta {
        padding: 50px 15px;
    }

    .dvvb-loan-renewal__cta-title {
        font-size: 26px;
    }

    .dvvb-loan-renewal__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .dvvb-loan-renewal__cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dvvb-loan-renewal__title {
        font-size: 26px;
    }

    .dvvb-loan-renewal__section-title {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .dvvb-loan-renewal__section-title::after {
        display: none;
    }

    .dvvb-loan-renewal__list-item {
        padding: 18px 20px;
    }

    .dvvb-loan-renewal__process-step {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
    }

    .dvvb-loan-renewal__process-timeline {
        padding-left: 0;
    }

    .dvvb-loan-renewal__process-timeline::before {
        display: none;
    }

    .dvvb-loan-renewal__process-number {
        margin: 0 auto 15px;
    }

    .dvvb-loan-renewal__process-content {
        padding-top: 0;
    }
}
