/* ===== weRus Custom Styles ===== */

:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --dark: #1a1a2e;
  --dark-alt: #16213e;
  --accent: #0f3460;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
}

/* ===== Base ===== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.7;

}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar a {
  color: #fff;
}

.top-bar a:hover {
  color: var(--primary);
}

.top-bar i {
  color: var(--primary);
}

/* ===== Navbar ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 8px 16px !important;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.btn-get-started {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 24px !important;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-get-started:hover {
  background: var(--primary-dark);
}

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(15,52,96,0.75) 100%),
    url('../logo2.webp') center/cover no-repeat;
  padding: 100px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero .btn-primary {
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
}

.hero .btn-outline-light {
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
}

/* ===== Page Banner ===== */
.page-banner {
  background:
    linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(15,52,96,0.75) 100%),
    url('../logo2.webp') center/cover no-repeat;
  padding: 60px 0;
  color: var(--white);
}

.page-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.6);
}

/* ===== Section Styles ===== */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.section-bg {
  background:
    linear-gradient(135deg, rgba(248,249,250,0.82) 0%, rgba(248,249,250,0.78) 100%),
    url('../logo2.webp') center/cover no-repeat;
}

/* ===== Service Cards ===== */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.service-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.service-card .btn-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
  padding: 0;
}

.service-card .btn-link:hover {
  color: var(--primary-dark);
}

/* ===== Info Section ===== */
.info-section {
  padding: 80px 0;
}

.info-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.info-section p {
  color: #555;
  line-height: 1.8;
}

.info-image {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-box {
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 20px 25px;
  display: inline-block;
  margin-top: 20px;
}

.contact-box a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

/* ===== Testimonials ===== */
.testimonials {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  padding: 80px 0;
  color: var(--white);
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* ===== Pricing ===== */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.pricing-toggle .btn {
  border-radius: 50px;
  padding: 8px 28px;
  font-weight: 600;
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}

.pricing-card.featured::after {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 2px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card .features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #555;
  font-size: 0.95rem;
}

.pricing-card .features li i {
  color: var(--primary);
  margin-right: 8px;
}

.pricing-card .btn {
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  width: 100%;
}

/* ===== Detail Page Content ===== */
.detail-section {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

.detail-section h2 {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.detail-section p {
  color: #555;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  background: var(--light);
  margin: 8px 0;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  color: #444;
  font-size: 0.95rem;
}

.btn-action {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
}

.btn-action:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* ===== Contact Form ===== */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--dark);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}

.contact-form .btn {
  border-radius: 50px;
  padding: 12px 40px;
  font-weight: 600;
}

.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-card .info-item i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 3px;
}

.contact-info-card .info-item a {
  color: #333;
}

/* ===== Features List (All Plans Include) ===== */
.included-features {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.included-features h3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.included-features ul {
  list-style: none;
  padding: 0;
  columns: 2;
}

.included-features ul li {
  padding: 8px 0;
  color: #555;
}

.included-features ul li i {
  color: #28a745;
  margin-right: 8px;
}

.additional-fees {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.additional-fees h3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.additional-fees ul {
  list-style: none;
  padding: 0;
}

.additional-fees ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #555;
}

.additional-fees ul li i {
  color: var(--primary);
  margin-right: 8px;
}

/* ===== Renter Portal Section ===== */
.renter-portal-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.renter-portal-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(13,110,253,0.15);
  border-radius: 50%;
}

.portal-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.renter-portal-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.renter-portal-section > .container > .row > .col-lg-6:first-child > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.portal-card {
  background: var(--white);
}

@media (max-width: 991px) {
  .renter-portal-section {
    padding: 50px 0;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.site-footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

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

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
}

/* ===== Hero Image (Virtual Hub) ===== */
.hero-image {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

/* ===== Step Cards (How It Works) ===== */
.step-card {
  position: relative;
  padding-top: 40px;
}

.step-card .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(13,110,253,0.3);
}

/* ===== Additional Fees Collapsible ===== */
.fees-details {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

.fees-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.fees-details summary::-webkit-details-marker {
  display: none;
}

.fees-details summary i.bi-info-circle {
  color: var(--primary);
}

.fees-details .toggle-icon {
  transition: transform 0.3s;
  color: var(--primary);
}

.fees-details[open] .toggle-icon {
  transform: rotate(180deg);
}

.fees-details .additional-fees {
  box-shadow: none;
  padding: 0;
}

/* ===== FAQ Accordion ===== */
#faqAccordion .accordion-item {
  background: var(--white);
  border-radius: 12px !important;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

#faqAccordion .accordion-button {
  font-weight: 600;
  color: var(--dark);
  padding: 18px 22px;
  background: var(--white);
}

#faqAccordion .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

#faqAccordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

#faqAccordion .accordion-body {
  padding: 0 22px 22px;
  color: #555;
  line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.final-cta .btn-primary {
  padding: 14px 36px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .included-features ul {
    columns: 1;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .top-bar .d-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
}

/* ===== Multi-Step Wizard ===== */

/* Progress Bar */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 0;
}

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

.wizard-step-number {
  width: 44px;
  height: 44px;
  background: #e9ecef;
  color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.wizard-step.active .wizard-step-number {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(13,110,253,0.3);
}

.wizard-step.completed .wizard-step-number {
  background: #28a745;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(40,167,69,0.3);
}

.wizard-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  margin-top: 8px;
  white-space: nowrap;
  transition: color 0.3s;
}

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

.wizard-step.completed .wizard-step-label {
  color: #28a745;
}

.wizard-step-line {
  flex: 1;
  height: 3px;
  background: #e9ecef;
  min-width: 30px;
  margin: 0 6px;
  margin-bottom: 22px;
  border-radius: 3px;
  transition: background 0.3s;
}

.wizard-step-line.completed {
  background: #28a745;
}

/* Panels */
.wizard-panel {
  display: none;
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  animation: wizardFadeIn 0.35s ease;
}

.wizard-panel.active {
  display: block;
}

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

.wizard-panel h3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.wizard-panel h4 {
  font-weight: 700;
  color: var(--dark);
}

.wizard-panel .form-label {
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
  margin-top: 8px;
}

.wizard-panel .form-control,
.wizard-panel .form-select {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

.wizard-panel .form-control:focus,
.wizard-panel .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}

.wizard-panel .form-control.is-invalid,
.wizard-panel .form-select.is-invalid {
  border-color: #dc3545;
}

.wizard-panel .invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: -8px;
  margin-bottom: 8px;
}

/* Wizard Buttons */
.wizard-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.wizard-buttons .btn {
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
}

/* File Upload Dropzone */
.upload-dropzone {
  border: 2px dashed #d0d5dd;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  margin-bottom: 16px;
  background: var(--light);
}

.upload-dropzone:hover {
  border-color: var(--primary);
  background: rgba(13,110,253,0.04);
}

.upload-dropzone.dragover {
  border-color: var(--primary);
  background: rgba(13,110,253,0.08);
}

.upload-dropzone.is-invalid {
  border-color: #dc3545;
  background: rgba(220,53,69,0.04);
}

.upload-placeholder i {
  font-size: 2.2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.upload-placeholder p {
  margin-bottom: 2px;
  color: #555;
  font-size: 0.95rem;
}

.upload-placeholder .fw-600 {
  font-weight: 600;
  cursor: pointer;
}

.upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.upload-preview i.bi-file-earmark-check {
  font-size: 1.5rem;
  color: #28a745;
}

.upload-filename {
  font-weight: 500;
  color: var(--dark);
  word-break: break-all;
}

/* Review Summary */
.review-summary {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.05);
}

.review-summary h5 {
  font-weight: 700;
  color: var(--dark);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.review-item {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.review-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

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

/* Success Panel */
.wizard-success {
  text-align: center;
}

/* ===== Wizard Responsive ===== */
@media (max-width: 767px) {
  .wizard-progress {
    gap: 0;
  }

  .wizard-step-number {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .wizard-step-label {
    font-size: 0.65rem;
  }

  .wizard-step-line {
    min-width: 16px;
    margin: 0 3px;
    margin-bottom: 18px;
  }

  .wizard-panel {
    padding: 22px 18px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .upload-dropzone {
    padding: 20px 14px;
  }

  .wizard-buttons {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .wizard-buttons .btn {
    width: 100%;
  }
}
