/* ========================================
   BULKY PICKUP LANDING PAGE - HERO SECTION ONLY
   Using existing website color scheme
   ======================================== */

/* CSS Variables - Matching existing website */
: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-gray-800: #1f2937;
    --dbn-gray-900: #111827;
}

/* Hero Section */
.bulky-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) {
    .bulky-hero {
        padding: 4rem 0 6rem;
    }
}

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

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

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

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

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

.bulky-hero-right {
    flex: 1;
    max-width: 550px;
    width: 100%;
}

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

.bulky-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Mobile Hero - Hidden on Desktop */
.bulky-hero-mobile {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.bulky-hero-image-mobile {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

/* Badge */
.bulky-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dbn-green-light);
    border: 1px solid var(--dbn-green);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.bulky-stars {
    color: #f59e0b;
    font-size: 14px;
}

.bulky-badge span {
    color: var(--dbn-green-dark);
    font-weight: 600;
    font-size: 14px;
}

/* Title */
.bulky-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dbn-gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .bulky-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .bulky-title {
        font-size: 3rem;
    }
}

/* Subtitle */
.bulky-subtitle {
    font-size: 1rem;
    color: var(--dbn-gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .bulky-subtitle {
        font-size: 1.125rem;
    }
}

/* Trust Points */
.bulky-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.bulky-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dbn-gray-700);
    font-weight: 500;
    font-size: 0.875rem;
}

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

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

.hero-custom .hero-service-trust-points {
    margin-bottom: 24px;
}

.hero-custom .hero-service-trust-points .bulky-trust-item {
    color: #fff;
}

/* CTA Buttons */
.bulky-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 480px) {
    .bulky-cta-buttons {
        flex-direction: row;
    }
}

.btn-bulky-primary {
    background: var(--dbn-green);
    color: var(--dbn-white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-bulky-primary:hover {
    background: var(--dbn-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(32, 201, 151, 0.3);
}

.btn-bulky-whatsapp {
    background: #25d366;
    color: var(--dbn-white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-bulky-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 991px) {
    .bulky-hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .bulky-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .bulky-hero-left {
        max-width: 100%;
    }
    
    .bulky-title {
        font-size: 1.75rem;
    }
    
    .bulky-subtitle {
        font-size: 1rem;
    }
    
    .bulky-trust-points {
        justify-content: center;
    }
    
    .bulky-cta-buttons {
        justify-content: center;
    }
}

/* ========================================
   TRUST STRIP SECTION
   ======================================== */
.bulky-trust-strip {
    background: var(--dbn-green);
    padding: 24px 0;
}

.bulky-trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bulky-trust-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dbn-white);
    font-weight: 500;
    font-size: 0.9375rem;
}

.bulky-trust-strip-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bulky-trust-strip-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--dbn-white);
}

@media (max-width: 767px) {
    .bulky-trust-strip-inner {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.bulky-how-it-works {
    padding: 60px 0;
    background: var(--dbn-white);
}

.bulky-how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bulky-how-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dbn-gray-900);
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .bulky-how-title {
        font-size: 2.5rem;
    }
}

.bulky-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .bulky-steps-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
}

.bulky-step-card {
    background: var(--dbn-gray-50);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    border: 1px solid var(--dbn-gray-200);
}

@media (min-width: 768px) {
    .bulky-step-card {
        padding: 32px 16px 24px;
    }
}

.bulky-step-number {
    width: 40px;
    height: 40px;
    background: var(--dbn-green);
    color: var(--dbn-white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.bulky-step-icon {
    width: 56px;
    height: 56px;
    background: var(--dbn-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.bulky-step-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dbn-gray-800);
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .bulky-step-card h3 {
        font-size: 1rem;
    }
}

/* Arrow connector for desktop */
@media (min-width: 768px) {
    .bulky-step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid var(--dbn-gray-200);
        z-index: 1;
    }
}

/* ========================================
   WHAT WE PICK UP SECTION
   ======================================== */
.bulky-what-we-pick {
    padding: 60px 0;
    background: var(--dbn-gray-50);
}

.bulky-what-we-pick .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bulky-what-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dbn-gray-900);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .bulky-what-title {
        font-size: 2.5rem;
    }
}

.bulky-what-subtitle {
    text-align: center;
    color: var(--dbn-gray-500);
    font-size: 1rem;
    margin-bottom: 32px;
}

.bulky-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

@media (min-width: 768px) {
    .bulky-items-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

.bulky-item-card {
    background: var(--dbn-white);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--dbn-gray-200);
    transition: all 0.3s ease;
}

.bulky-item-card:hover {
    border-color: var(--dbn-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.bulky-item-icon {
    width: 48px;
    height: 48px;
    background: var(--dbn-green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
}

.bulky-item-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dbn-gray-800);
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   PRICING EXPECTATION SECTION
   ======================================== */
.bulky-pricing {
    padding: 60px 0;
    background: var(--dbn-white);
}

.bulky-pricing .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bulky-pricing-card {
    background: var(--dbn-gray-50);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid var(--dbn-green);
}

.bulky-pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dbn-gray-900);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .bulky-pricing-title {
        font-size: 2rem;
    }
}

.bulky-pricing-factors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.bulky-pricing-factor {
    background: var(--dbn-white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dbn-gray-700);
    border: 1px solid var(--dbn-gray-200);
}

.bulky-pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dbn-green-dark);
    font-weight: 600;
    font-size: 1rem;
}

.bulky-pricing-note svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   REQUEST QUOTE FORM SECTION
   ======================================== */
.bulky-quote-form {
    padding: 60px 0;
    background: var(--dbn-gray-50);
}

.bulky-quote-form .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bulky-form-card {
    background: var(--dbn-white);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .bulky-form-card {
        padding: 40px 32px;
    }
}

.bulky-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: var(--dbn-gray-900);
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .bulky-form-title {
        font-size: 2rem;
    }
}

.bulky-form-group {
    margin-bottom: 20px;
}

.bulky-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dbn-gray-700);
    margin-bottom: 8px;
}

.bulky-form-label span {
    color: #dc2626;
}

.bulky-form-input,
.bulky-form-textarea,
.bulky-form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--dbn-gray-300);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--dbn-gray-800);
    background: var(--dbn-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.bulky-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.bulky-form-file {
    border: 2px dashed var(--dbn-gray-300);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bulky-form-file:hover {
    border-color: var(--dbn-green);
    background: var(--dbn-green-light);
}

.bulky-form-file-text {
    color: var(--dbn-gray-500);
    font-size: 0.9375rem;
}

.bulky-form-submit {
    width: 100%;
    background: var(--dbn-green);
    color: var(--dbn-white);
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.bulky-form-submit:hover {
    background: var(--dbn-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(32, 201, 151, 0.3);
}

/* Premium Form Enhancements using booking styles */
.bulky-quote-form .dbn-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bulky-quote-form .dbn-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .bulky-quote-form .dbn-form-card {
        padding: 40px;
    }
}

.bulky-quote-form .dbn-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .bulky-quote-form .dbn-form-title {
        font-size: 2rem;
    }
}

.bulky-quote-form .dbn-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .bulky-quote-form .dbn-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bulky-quote-form .dbn-form-group {
    margin-bottom: 20px;
}

.bulky-quote-form .dbn-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.bulky-quote-form .dbn-form-label i {
    color: var(--dbn-green);
    width: 16px;
}

.bulky-quote-form .dbn-form-label .required {
    color: #dc2626;
}

.bulky-quote-form .dbn-form-input,
.bulky-quote-form .dbn-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    color: #111827;
    background: #fff;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.bulky-quote-form .dbn-form-input:focus,
.bulky-quote-form .dbn-form-textarea:focus {
    outline: none;
    border-color: var(--dbn-green);
    box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.15);
}

.bulky-quote-form .dbn-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.bulky-quote-form .dbn-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .bulky-quote-form .dbn-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Make photo upload full width */
.bulky-quote-form .dbn-form-row:has(.dbn-file-upload) {
    grid-template-columns: 1fr !important;
}

/* Also ensure the parent has full width */
.bulky-quote-form .dbn-file-upload {
    width: 100%;
}

/* Form Validation Error Styles */
.dbn-form-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.dbn-form-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.bulky-quote-form .dbn-file-upload {
    position: relative;
}

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

.bulky-quote-form .dbn-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.bulky-quote-form .dbn-file-label:hover {
    border-color: var(--dbn-green);
    background: var(--dbn-green-light);
}

.bulky-quote-form .dbn-file-label i {
    font-size: 28px;
    color: var(--dbn-green);
}

.bulky-quote-form .dbn-file-label span {
    font-size: 0.875rem;
    color: #6b7280;
}

.bulky-quote-form .dbn-file-names {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.bulky-quote-form .dbn-file-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--dbn-green-light);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--dbn-green-dark);
}

/* Image Preview Styles */
.bulky-quote-form .dbn-file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.bulky-quote-form .dbn-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bulky-quote-form .dbn-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bulky-quote-form .dbn-preview-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}

.bulky-quote-form .dbn-preview-remove:hover {
    background: #dc2626;
}

.bulky-quote-form .dbn-preview-remove i {
    font-size: 12px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.bulky-faq {
    padding: 60px 0;
    background: var(--dbn-white);
}

.bulky-faq .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bulky-faq-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dbn-gray-900);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .bulky-faq-title {
        font-size: 2.5rem;
    }
}

.bulky-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bulky-faq-item {
    background: var(--dbn-gray-50);
    border-radius: 12px;
    border: 1px solid var(--dbn-gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bulky-faq-item:hover {
    border-color: var(--dbn-green);
}

.bulky-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dbn-gray-800);
    transition: color 0.2s ease;
}

.bulky-faq-question:hover {
    color: var(--dbn-green-dark);
}

.bulky-faq-icon {
    width: 24px;
    height: 24px;
    background: var(--dbn-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bulky-faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--dbn-white);
    transition: transform 0.3s ease;
}

.bulky-faq-item.active .bulky-faq-icon {
    transform: rotate(180deg);
}

.bulky-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bulky-faq-item.active .bulky-faq-answer {
    max-height: 200px;
}

.bulky-faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--dbn-gray-600);
    line-height: 1.6;
}

/* ========================================
   CLOSING CTA SECTION
   ======================================== */
.bulky-closing-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dbn-green) 0%, var(--dbn-green-dark) 100%);
}

.bulky-closing-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.bulky-closing-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dbn-white);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .bulky-closing-cta-title {
        font-size: 2.5rem;
    }
}

.bulky-closing-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.bulky-closing-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 480px) {
    .bulky-closing-cta-buttons {
        flex-direction: row;
    }
}

.btn-bulky-cta-primary {
    background: var(--dbn-white);
    color: var(--dbn-green);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-bulky-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-bulky-cta-whatsapp {
    background: #25d366;
    color: var(--dbn-white);
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-bulky-cta-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bulky-quote-form .dbn-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--dbn-green) 0%, var(--dbn-green-dark) 100%);
    color: #fff;
    padding: 18px 32px;
    border-radius: 10px;
    font-size: 1.0625rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.bulky-quote-form .dbn-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.35);
}

.bulky-quote-form .dbn-submit-btn i {
    font-size: 1rem;
}
