/* Global Styles */
:root {
    --primary-color-x: #FF6B35;
    --primary-color: #edd619;

    --secondary-color: #004E89;
    --light-bg: #F8F9FA;
    --dark-text: #1A1A1A;
    --border-color: #E0E0E0;
    --success-color: #10B981;
    --error-color: #EF4444;
    --accent-color-x: #f3521c;
    --accent-color:#1620e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Styling */
.navbar {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--dark-text) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Button Styles */
.btn-join {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8555 100%);
    border: none;
    color: white;
    padding: 1.1rem 2.8rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    cursor: pointer;
    font-size: 1rem;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.45);
    color: white;
}

.btn-join:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #FF8555;
    border-color: #FF8555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
    color:var(--accent-color);
}
.border-primary {
    border-color: var(--success-color);
}
.bg-primary {
    border-color: var(--success-color);
}


.btn-cancel {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cancel:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
}

.btn-login {
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    height: 61px;
}

.btn-divider {
    height: 100%;
    margin-top: 18px;
    color: #fff;
    font-weight: 900;
}

.btn-login:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 78, 137, 0.3);
}

.btn-login:active {
    transform: translateY(-1px);
}

/* Form Styles */
.form-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1.25rem;
    color: #98a2b3;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-divider::before,
.form-divider::after {
    content: "";
    flex: 1;
    border-top: 1px solid #e5e7eb;
}

.form-divider span {
    padding: 0.2rem 0.7rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f8fafc;
    line-height: 1.2;
}


.input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
}

.form-control, .form-select, .form-control-sm {
    border: none;
    padding: 1.1rem 1.8rem;
    font-size: 1rem;
    background: white;
    font-family: inherit;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control-sm {
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus, .form-select:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-color);
    outline: none;
}

.form-control.is-invalid {
    border-color: var(--error-color);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    border-color: var(--error-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.form-control-full {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 0.875rem 1.2rem;
}

.form-divider {
    text-align: center;
    margin: 2rem 0;
    color: #BBB;
    font-size: 0.95rem;
    font-weight: 500;
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Multi-Step Form Styles */
.form-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-bg) 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.form-header p {
    font-size: 1rem;
    color: #666;
}

/* Progress Steps */
.progress-container {
    padding: 2rem;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.progress-line {
    position: absolute;
    top: 22px;
    left: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.progress-step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .progress-step-circle {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.progress-step.completed .progress-step-circle {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.progress-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.progress-step.active .progress-step-label {
    color: var(--primary-color);
}

/* Form Body */
.form-body {
    padding: 3rem 2rem;
    min-height: 500px;
}

.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-content.active {
    display: block;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.step-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-container {
    background: var(--light-bg);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    text-align: center;
    color: #999;
}

.map-placeholder p {
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Items Section */
.items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.items-count {
    color: #666;
    font-size: 0.95rem;
}

.item-card {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.item-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--error-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-remove:hover {
    background: var(--error-color);
    color: white;
    transform: scale(1.1);
}

.item-fields {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.item-dimensions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #999;
}

.empty-state i {
    font-size: 3rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

/* Review Section */
.review-section {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--dark-text);
}

.edit-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.edit-link:hover {
    color: #FF8555;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.review-label {
    font-weight: 600;
    color: #666;
}

.review-value {
    color: var(--dark-text);
    font-weight: 500;
}

.review-table {
    overflow-x: auto;
}

.review-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.review-table th {
    background: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
    color: var(--dark-text);
}

.review-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* Confirmation */
.confirmation {
    text-align: center;
    padding: 2rem;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.confirmation-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.confirmation-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.confirmation-id {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.confirmation-note {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-bg);
}

.nav-group {
    display: flex;
    gap: 1rem;
}

.nav-group button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Modals */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);


    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.modal-body {
    padding: 2rem;
    color: #666;
}

.modal-body p {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-link {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.divider-line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8555 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Auth Pages Container */
.auth-container {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-bg) 100%);
    padding: 40px 20px;
}

.auth-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    width: 100%;
}

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

.auth-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.auth-header p {
    color: #666;
    font-size: 0.95rem;
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accent-color {    color: var(--accent-color);}

.auth-link a:hover {
    color: #FF8555;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.success-text {
    color: #666;
    margin-bottom: 2rem;
}

/* Quote Request Page */
.quote-section {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-bg) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.quote-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.quote-form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.textarea-field {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Form Page Container */
.form-page-container {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-bg) 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.form-page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: rgba(255, 107, 53, 0.1);
}

.shadow-soft {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .quote-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-join, .btn-login, .btn-secondary, .btn-primary {
        width: 100%;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .form-header {
        padding: 2rem 1rem;
    }

    .form-body {
        padding: 2rem 1rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-group {
        width: 100%;
        flex-direction: column;
    }

    .nav-group button {
        width: 100%;
    }

    .progress-steps {
        gap: 0.5rem;
    }

    .progress-step-label {
        font-size: 0.7rem;
    }

    .progress-step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .item-fields {
        grid-template-columns: 1fr;
    }

    .item-dimensions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .auth-container {
        min-height: auto;
        padding: 20px;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .form-wrapper {
        border-radius: 0;
        box-shadow: none;
    }

    .form-header {
        padding: 1.5rem 1rem;
    }

    .form-body {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .form-navigation {
        padding: 1rem;
    }

    .quote-section {
        padding: 40px 0 30px;
    }

    .quote-header h1 {
        font-size: 1.5rem;
    }

    .progress-container {
        padding: 1rem;
    }
}


#map {
    height: 100%;
    width: 100%;

    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gm-style-iw-chr {display: none;}

.gm-style-iw-c {
    padding: 10px !important;
    font-weight: 600 !important;
    color: #01249d !important;
    font-size: 14px !important;
}

.trust-bar {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    color: #fff;
}

.trust-item {
    display: inline-block;
    margin: 0 1.5rem;
    color: #fff;
}


.pricing {
    background-color: var(--bg-secondary);
    padding: 4rem 2rem;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: var(--bg-primary);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {


    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.pricing-card--featured {
    border-color: var(--accent-color);
    border: 2px solid var(--border-color);
    background-color: var(--bg-secondary);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
    transform: scale(1.05);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vehicle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-amount strong {
    color: var(--accent-color);
    font-size: 2rem;
    display: block;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-card .btn-primary {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2rem;
}


.faq-item {
    background-color: #f8fafc;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h6 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-item h6::after {
    content: "▼";
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item[aria-expanded="true"] h6::after {
    transform: rotate(180deg);
}

.faq-item .collapse p {
    color: var(--text-secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

