/* ===================================
   DISPOSAL BOOKING NEW STYLES
   Clean, conflict-free design
   =================================== */

/* CSS Variables */
:root {
    --dbn-green: #20c997;
    --dbn-green-dark: #1baa80;
    --dbn-green-light: #e6faf4;
    --dbn-black: #000000;
    --dbn-white: #ffffff;
    --dbn-gray-50: #f9fafb;
    --dbn-gray-100: #f3f4f6;
    --dbn-gray-200: #e5e7eb;
    --dbn-gray-300: #d1d5db;
    --dbn-gray-400: #9ca3af;
    --dbn-gray-500: #6b7280;
    --dbn-gray-600: #4b5563;
    --dbn-gray-700: #374151;
    --dbn-red: #dc4c64;
}

/* Base Styles */
.dbn-body {
    color: var(--dbn-gray-900);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.dbn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .dbn-container {
        padding: 0 2rem;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.dbn-hero {
    background: linear-gradient(
        to bottom,
        var(--dbn-gray-50),
        var(--dbn-white)
    );
    padding: 1.25rem 0 2rem;
    border-bottom: 1px solid var(--dbn-gray-100);
}

@media (min-width: 1024px) {
    .dbn-hero {
        padding: 4rem 0 6rem;
    }
}

.dbn-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .dbn-hero-inner {
        flex-direction: row;
        align-items: flex-start;
        /* gap: 4rem; */
    }
}

.dbn-hero-left {
    flex: 1;
}

.dbn-hero-right {
    flex: 1;
    max-width: 600px;
    width: 100%;
}

@media (max-width: 1023px) {
    .dbn-hero-right {
        display: block;
    }
}

/* Mobile Hero */
.dbn-hero-mobile {
    display: block;
    text-align: center;
    margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
    .dbn-hero-mobile {
        display: none;
    }
}

.dbn-hero-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .dbn-hero-desktop {
        display: block;
        max-width: 600px;
    }
}

/* Badge */
.dbn-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dbn-green-light);
    color: var(--dbn-green-dark);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .dbn-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1.25rem;
    }
}

.dbn-badge .dbn-stars {
    color: #eab308;
}

/* Titles */
.dbn-title-mobile {
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dbn-black);
    margin-bottom: 0.5rem;
}

.dbn-subtitle-mobile {
    font-size: 0.875rem;
    color: var(--dbn-gray-500);
}

.dbn-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dbn-black);
    margin-bottom: 1.25rem;
}

.dbn-subtitle {
    font-size: 1.25rem;
    color: var(--dbn-gray-500);
    margin-bottom: 2rem;
    max-width: 32rem;
}

/* Trust Points */
.dbn-trust-points {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dbn-gray-700);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dbn-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dbn-check-icon {
    width: 24px;
    height: 24px;
    background: var(--dbn-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dbn-check-icon svg {
    width: 14px;
    height: 14px;
}

/* Requests Counter */
.dbn-requests {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--dbn-gray-400);
}

.dbn-requests strong {
    color: var(--dbn-gray-600);
}

.dbn-pulse-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--dbn-green);
    border-radius: 50%;
    animation: dbn-pulse 2s ease-in-out infinite;
}

@keyframes dbn-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

/* ===================================
   FORM SECTION
   =================================== */

.dbn-form-section {
    padding: 0;
    background: var(--dbn-white);
}

@media (min-width: 1024px) {
    .dbn-form-section .dbn-container {
        position: relative;
        margin-top: -500px;
        padding-bottom: 4rem;
    }
}

@media (max-width: 1023px) {
    .dbn-form-section {
        padding: 2.5rem 0 4rem;
    }
}

.dbn-form-card {
    background: var(--dbn-white);
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--dbn-gray-100);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .dbn-form-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
        max-width: 100%;
    }

    .dbn-hero-right .dbn-form-card {
        position: sticky;
        top: 2rem;
    }
}

/* Form Controls */
.dbn-form-control,
.dbn-input {
    width: 100%;
    padding: 0.875rem;
    background: var(--dbn-gray-50) !important;
    border: 1px solid var(--dbn-gray-200) !important;
    border-radius: 7px !important;
    font-size: 1rem;
    color: var(--dbn-gray-900);
    transition: all 0.2s ease;
    /* min-height: 44px; */
    font-family: inherit;
}

.dbn-form-control:focus,
.dbn-input:focus {
    outline: none;
    background: var(--dbn-white);
    border-color: var(--dbn-green);
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.dbn-form-control::placeholder,
.dbn-input::placeholder {
    color: var(--dbn-gray-400);
}

.dbn-error-field {
    border-color: var(--dbn-red) !important;
    background: #fff5f7 !important;
}

/* Form Group */
.dbn-form-group {
    margin-bottom: 1rem;
}

.dbn-form-label {
    display: block;
    font-size: 0.875rem;
    /* font-weight: 600; */
    color: var(--dbn-gray-700);
    margin-bottom: 0.5rem;
}

.dbn-required {
    color: var(--dbn-red);
}

/* Phone Input */
.dbn-phone-wrapper {
    display: flex;
    gap: 0.5rem;
}

.dbn-country-select {
    width: 140px;
    flex-shrink: 0;
}

.dbn-phone-input {
    flex: 1;
    min-width: 0;
}

/* Select2 Custom Styles */
.dbn-phone-wrapper .select2 {
    width: 50% !important;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .dbn-phone-wrapper {
        display: block;
        
    }
    .dbn-phone-wrapper .select2 {
        width: 100% !important;
        margin-bottom: 10px;
    }
}

.select2-container--default .select2-selection--single {
    height: 44px;
    padding: 0.5rem 0.75rem;
    background: var(--dbn-gray-50) !important;
    border: 1px solid var(--dbn-gray-200) !important;
    border-radius: 7px !important;
    font-size: 0.875rem;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 1.5;
    color: var(--dbn-gray-900);
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 42px;
}

.select2-container--default.select2-container--focus
    .select2-selection--single {
    border-color: var(--dbn-green);
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.select2-dropdown {
    border-radius: 0.5rem;
    border: 1px solid var(--dbn-gray-200);
}

.select2-search--dropdown {
    padding: 0.5rem;
}

.select2-search--dropdown .select2-search__field {
    padding: 0.5rem;
    border: 1px solid var(--dbn-gray-200);
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.select2-results__option {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background: var(--dbn-green-light);
    color: var(--dbn-green-dark);
}

/* ===================================
    CUSTOM CHECKBOX STYLES
    =================================== */

.dbn-checkbox-group {
    margin: 1.25rem 0;
}

/* Custom checkbox container */
.dbn-custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
    padding: 10px;
    background: var(--dbn-gray-50) !important;
    border: 1px solid var(--dbn-gray-200) !important;
    border-radius: 7px;
    transition: all 0.25s ease;
}

.dbn-custom-checkbox:hover {
    background: var(--dbn-gray-100);
    border-color: var(--dbn-gray-300);
}

/* Checkbox box */
.dbn-checkbox-box {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--dbn-white);
    border: 2px solid var(--dbn-gray-300);
    border-radius: 6px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkbox icon (hidden by default) */
.dbn-checkbox-icon {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    width: 14px;
    height: 14px;
}

/* Checked state */
.dbn-custom-checkbox input:checked + .dbn-checkbox-box {
    background: var(--dbn-green);
    border-color: var(--dbn-green);
}

.dbn-custom-checkbox input:checked + .dbn-checkbox-box .dbn-checkbox-icon {
    opacity: 1;
    transform: scale(1);
}

.dbn-custom-checkbox input:checked ~ .dbn-checkbox-text {
    color: var(--dbn-gray-900);
}

/* Checkbox text */
.dbn-checkbox-text {
    font-size: 13px;
    color: var(--dbn-gray-600);
    line-height: 1.5;
    /* padding-top: 0.125rem; */
    transition: color 0.25s ease;
}

/* Hide original checkbox */
.dbn-custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Focus state */
.dbn-custom-checkbox input:focus + .dbn-checkbox-box {
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.2);
}

/* Error state */
.dbn-checkbox-error .dbn-custom-checkbox {
    border-color: var(--dbn-red);
    background: #fff5f7;
}

.dbn-error-text {
    display: block;
    color: var(--dbn-red);
    font-size: 0.8125rem;
    margin-top: 0.375rem;
}

/* ===================================
   PROGRESS BAR
   =================================== */

.dbn-progress-wrapper {
    width: 100%;
    /* max-width: 400px; */
    margin: 0 auto 1.5rem;
    margin-bottom: 2rem;
}

.dbn-progress-bar {
    width: 100%;
    height: 9px;
    background: var(--dbn-gray-200);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.dbn-progress-fill {
    height: 100%;
    background: var(--dbn-green);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* ===================================
   FORM STEPS
   =================================== */

.dbn-form-step {
    display: none;
}

.dbn-form-step-active {
    display: block;
    animation: dbn-fade-up 0.4s ease-out;
}

@keyframes dbn-fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Header */
.dbn-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dbn-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dbn-black);
    margin: 0;
}

.dbn-step-time {
    font-size: 0.75rem;
    color: var(--dbn-gray-400);
}

/* Buttons */
.dbn-btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--dbn-green);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(32, 201, 151, 0.35);
}

.dbn-btn-primary:hover {
    background: var(--dbn-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(32, 201, 151, 0.5);
}

.dbn-btn-back {
    background: none;
    border: none;
    color: var(--dbn-gray-500);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem;
}

.dbn-btn-back:hover {
    color: var(--dbn-gray-700);
}

/* Security Note */
.dbn-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--dbn-gray-400);
    margin-bottom: 0px !important;
}

.dbn-lock-icon {
    width: 1rem;
    height: 1rem;
}

/* ===================================
   FIELD SETS
   =================================== */

.dbn-fieldset {
    margin-bottom: 5px;
}

.dbn-legend {
    font-size: 0.875rem;
    /* font-weight: 600; */
    color: var(--dbn-gray-700);
    margin-bottom: 0.75rem;
    display: block;
}

/* File Upload */
.dbn-file-wrapper {
    position: relative;
}

.dbn-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.dbn-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem;
    background: var(--dbn-gray-50);
    border: 2px dashed var(--dbn-gray-300);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dbn-file-label:hover,
.dbn-file-wrapper.is-dragover .dbn-file-label {
    border-color: var(--dbn-green);
    background: var(--dbn-green-light);
}

.dbn-upload-icon {
    font-size: 1.5rem;
}

.dbn-upload-text {
    font-size: 0.875rem;
    color: var(--dbn-gray-600);
}

/* Photo Gallery */
.dbn-photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dbn-photo-item {
    position: relative;
    width: 80px;
    height: 80px;
}

.dbn-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.dbn-photo-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--dbn-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    z-index: 10;
    transition: transform 0.2s ease;
}

.dbn-photo-remove:hover {
    transform: scale(1.1);
}

/* Select */
.dbn-select {
    width: 100%;
    padding: 10px;
    background: var(--dbn-gray-50);
    border: 1px solid var(--dbn-gray-200);
    border-radius: 0.75rem;
    font-size: 13px;
    color: var(--dbn-gray-900);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.dbn-select:focus {
    outline: none;
    border-color: var(--dbn-green);
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

/* Date Input */
.dbn-date-container {
    position: relative;
}

.dbn-date-input {
    width: 100%;
    padding: 0.875rem;
    background: var(--dbn-gray-50);
    border: 1px solid var(--dbn-gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: var(--dbn-gray-900);
}

.dbn-date-input:focus {
    outline: none;
    border-color: var(--dbn-green);
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.dbn-calendar-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dbn-gray-400);
}

/* ===================================
   SERVICE CARDS
   =================================== */

.dbn-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .dbn-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

.dbn-service-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--dbn-gray-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dbn-service-card:hover {
    border-color: var(--dbn-green);
    background: var(--dbn-green-light);
}

.dbn-service-card.dbn-selected {
    border-color: var(--dbn-green);
    background: var(--dbn-green-light);
}

.dbn-tick-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid var(--dbn-gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.625rem;
    color: transparent;
    transition: all 0.2s ease;
}

.dbn-service-card.dbn-selected .dbn-tick-icon {
    background: var(--dbn-green);
    border-color: var(--dbn-green);
    color: white;
}

/* Lock Icon */
.dbn-lock-icon {
    width: 16px;
    height: 16px;
    color: var(--dbn-gray-400);
    flex-shrink: 0;
}

/* Upload Icon */
.dbn-upload-icon {
    font-size: 1.5rem;
    color: var(--dbn-gray-400);
}

/* Calendar Icon */
.dbn-calendar-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dbn-gray-400);
    pointer-events: none;
}

.dbn-date-container {
    position: relative;
}

.dbn-service-card p {
    font-size: 0.75rem;
    color: var(--dbn-gray-700);
    margin: 0;
}

/* ===================================
   LANGUAGE CHECKLIST - Radio Buttons
   =================================== */

.dbn-language-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dbn-lang-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dbn-lang-input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--dbn-gray-400);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.dbn-lang-input[type="radio"]:hover {
    border-color: var(--dbn-green);
}

.dbn-lang-input[type="radio"]:checked {
    border-color: var(--dbn-green);
    background-color: var(--dbn-green);
}

.dbn-lang-input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
}

.dbn-lang-label {
    font-size: 0.875rem;
    color: var(--dbn-gray-700);
    cursor: pointer;
}

/* ===================================
   ERROR MESSAGES
   =================================== */

.dbn-error-text {
    display: block;
    color: var(--dbn-red);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ===================================
   MOBILE TRUST POINTS
   =================================== */

.dbn-trust-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dbn-gray-600);
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .dbn-trust-mobile {
        display: none;
    }
}

.dbn-trust-mobile .dbn-check-icon {
    width: 20px;
    height: 20px;
}

.dbn-trust-mobile .dbn-check-icon svg {
    width: 12px;
    height: 12px;
}

/* ===================================
   COLLAPSIBLE
   =================================== */
.dbn-collapsible {
    margin-bottom: 0px !important;
}
.dbn-collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--dbn-gray-50);
    border: 1px solid var(--dbn-gray-200);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dbn-collapsible-header:hover {
    background: var(--dbn-gray-100);
    border-color: var(--dbn-gray-300);
}

.dbn-collapsible-header span:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dbn-gray-700);
}

.dbn-chevron {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.dbn-header-expanded .dbn-chevron {
    transform: rotate(180deg);
}

.dbn-collapsible-content {
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
}

.dbn-collapsible-content.dbn-collapsed {
    max-height: 400px;
    opacity: 1;
}

/* ===================================
   TEXTAREA
   =================================== */

.dbn-textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--dbn-gray-50);
    border: 1px solid var(--dbn-gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: var(--dbn-gray-900);
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.dbn-textarea:focus {
    outline: none;
    border-color: var(--dbn-green);
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

/* ===================================
   SUBMIT BUTTON
   =================================== */

.dbn-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--dbn-green);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(32, 201, 151, 0.35);
}

.dbn-submit-btn:hover {
    background: var(--dbn-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(32, 201, 151, 0.5);
}

.dbn-collapsible-content.dbn-collapsed {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"],
textarea,
select {
    font-size: 13px;
}

/* ===================================
   TAILWIND HELPER STYLES
   For new sections (Trust Bar, Why Us, Process, Testimonials)
   =================================== */

/* Benefit Card */
.benefit-card {
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.benefit-card:hover {
    border-left-color: var(--dbn-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Step Number */
.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dbn-green);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Step Connector (desktop) */
@media (min-width: 1024px) {
    .step-connector:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20px;
        left: calc(50% + 24px);
        width: calc(100% - 48px);
        height: 2px;
        background: linear-gradient(90deg, var(--dbn-green), #e2e8f0);
    }
}

/* CTA Glow Button */
.cta-glow {
    box-shadow: 0 4px 20px rgba(32, 201, 151, 0.35);
    transition: all 0.2s ease;
}

.cta-glow:hover {
    box-shadow: 0 6px 28px rgba(32, 201, 151, 0.5);
    transform: translateY(-1px);
}

.cta-glow:active {
    transform: scale(0.98);
    box-shadow: 0 2px 12px rgba(32, 201, 151, 0.3);
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Accent Light Background */
.bg-accent-light {
    background-color: #e6faf4;
}

/* Text Accent */
.text-accent {
    color: var(--dbn-green);
}

/* Pulse Dot Animation */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Check Icon */
.check-icon {
    width: 24px;
    height: 24px;
    background: var(--dbn-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

/* Font serif for testimonials */
.font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

/* Hide scrollbar for horizontal scroll */
.scrollbar-hide::-webkit-scrollbar { 
    display: none; 
}
.scrollbar-hide { 
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

/* ===================================
   TRUST BAR
   =================================== */

.dbn-trust-bar {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem 0;
}

@media (min-width: 1024px) {
    .dbn-trust-bar {
        padding: 1.5rem 0;
    }
}

.dbn-trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
}

@media (max-width: 1023px) {
    .dbn-trust-bar-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1rem;
    }
}

.dbn-trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .dbn-trust-bar-item {
        font-size: 0.875rem;
        gap: 0.75rem;
    }
}

.dbn-trust-bar-item i {
    color: var(--dbn-green);
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .dbn-trust-bar-item i {
        font-size: 1.25rem;
    }
}

/* ===================================
   WHY US SECTION
   =================================== */

.dbn-why-us {
    background: #fff;
    padding: 2.5rem 0;
}

@media (min-width: 1024px) {
    .dbn-why-us {
        padding: 6rem 0;
    }
}

.dbn-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .dbn-section-header {
        margin-bottom: 3rem;
    }
}

.dbn-section-header h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #111827;
}

@media (min-width: 1024px) {
    .dbn-section-header h2 {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }
}

.dbn-section-header p {
    color: #6b7280;
    font-size: 0.875rem;
    max-width: 360px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .dbn-section-header p {
        font-size: 1rem;
    }
}

.dbn-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .dbn-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.dbn-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    background: #fff;
    transition: all 0.25s ease;
}

@media (min-width: 1024px) {
    .dbn-benefit-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 1rem;
    }
}

.dbn-benefit-card:hover {
    border-left-color: var(--dbn-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.dbn-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #e6faf4;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dbn-green);
    font-size: 1.25rem;
}

@media (min-width: 1024px) {
    .dbn-benefit-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1rem;
    }
}

.dbn-benefit-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111827;
}

@media (min-width: 1024px) {
    .dbn-benefit-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
}

.dbn-benefit-content p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.dbn-process {
    background: #f9fafb;
    padding: 2.5rem 0;
}

@media (min-width: 1024px) {
    .dbn-process {
        padding: 6rem 0;
    }
}

.dbn-process h2 {
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #111827;
}

@media (min-width: 1024px) {
    .dbn-process h2 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

.dbn-process > .container > p {
    color: #6b7280;
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .dbn-process > .container > p {
        font-size: 1rem;
        margin-bottom: 4rem;
    }
}

.dbn-process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .dbn-process-steps {
        flex-direction: row;
        gap: 3rem;
        justify-content: center;
    }
}

.dbn-process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .dbn-process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        flex: 1;
        max-width: 280px;
        position: relative;
    }
    
    .dbn-process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20px;
        left: calc(50% + 24px);
        width: calc(100% - 48px);
        height: 2px;
        background: linear-gradient(90deg, var(--dbn-green), #e2e8f0);
    }
}

.dbn-step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dbn-green);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.dbn-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111827;
}

@media (min-width: 1024px) {
    .dbn-step-content h3 {
        margin-bottom: 0.5rem;
    }
}

.dbn-step-content p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
}

.dbn-process-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .dbn-process-cta {
        margin-top: 3rem;
    }
}

.dbn-btn-cta {
    display: inline-block;
    width: 100%;
    background: var(--dbn-green);
    color: #fff;
    padding: 0.875rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(32, 201, 151, 0.35);
}

@media (min-width: 640px) {
    .dbn-btn-cta {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .dbn-btn-cta {
        font-size: 1.125rem;
        padding: 1rem 2.5rem;
    }
}

.dbn-btn-cta:hover {
    background: var(--dbn-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(32, 201, 151, 0.5);
}

.dbn-process-cta p {
    color: #9ca3af;
    font-size: 0.6875rem;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .dbn-process-cta p {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.dbn-testimonials {
    background: #fff;
    padding: 2.5rem 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .dbn-testimonials {
        padding: 6rem 0;
    }
}

.dbn-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .dbn-stars {
        font-size: 1rem;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
}

.dbn-stars span {
    color: #6b7280;
    margin-left: 0.5rem;
}

@media (min-width: 1024px) {
    .dbn-stars span {
        font-size: 0.875rem;
        margin-left: 0.75rem;
    }
}

.dbn-testimonials-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
    .dbn-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        overflow: visible;
        padding-bottom: 0;
    }
}

.dbn-testimonial-card {
    background: #f9fafb;
    padding: 1.25rem;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    min-width: 280px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .dbn-testimonial-card {
        padding: 1.5rem;
        border-radius: 1rem;
        min-width: auto;
    }
}

.dbn-quote-icon {
    color: var(--dbn-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: Georgia, serif;
}

@media (min-width: 1024px) {
    .dbn-quote-icon {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }
}

.dbn-testimonial-card p {
    color: #4b5563;
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .dbn-testimonial-card p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.dbn-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.dbn-author-avatar {
    width: 2rem;
    height: 2rem;
    background: #e6faf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbn-green);
    font-weight: 700;
    font-size: 0.75rem;
}

@media (min-width: 1024px) {
    .dbn-author-avatar {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
    }
}

.dbn-author-info strong {
    display: block;
    font-weight: 700;
    font-size: 0.8125rem;
    color: #111827;
}

@media (min-width: 1024px) {
    .dbn-author-info strong {
        font-size: 0.875rem;
    }
}

.dbn-author-info span {
    color: #9ca3af;
    font-size: 0.6875rem;
}

@media (min-width: 1024px) {
    .dbn-author-info span {
        font-size: 0.75rem;
    }
}

