/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family:
    'Inter Tight',
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  border-radius: 1.75rem;
  padding: 0 1.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  height: 58px;
  line-height: 58px;
  width: fit-content;
  min-width: 250px;
}

.btn.w-full {
  width: 100%;
}
/* Primary Button - White with Dark Icon Circle */
.btn-primary-white {
  background: #fefefe;
  color: #0f0f0f;
  padding: 0.3125rem 0.375rem;
  gap: 2.25rem;
}

.btn.btn_w_icon {
  display: flex;
  justify-content: space-between;
  padding-right: 6px;
  gap:0;
}
.btn.header_quote_btn {
 display: flex;
}
@media screen and (max-width:1100px ) {
  .btn.header_quote_btn {
    display: none ;
  }
}

.header_quote_btn_mobile {
  display: none;
}
@media screen and (min-width:1100px ) {
  .btn.header_quote_btn_mobile {
    display: flex ;
  }
}


.btn-primary-white .btn-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  padding: 0.125rem 0.1875rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  background: #222731;
  backdrop-filter: blur(2.8px);
}

.btn-primary-white:hover {
  opacity: 0.9;
}

/* Primary Button - Dark Background */
.btn-primary-dark {
  background: #222731;
  color: #fefefe;
  backdrop-filter: blur(3px);
  padding: 1.0625rem 1.375rem;
  position: relative;
}



.btn-primary-dark .btn-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fefefe;
}

.btn-primary-dark:hover {
  background: #2a3340;
}

.btn_text {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  flex-grow: 1;
}
/* Chat Button - Semi-transparent Dark */
.btn-chat {
  background: rgba(1, 1, 1, 0.69);
  color: #fefefe;
  backdrop-filter: blur(4px);
  padding: 1.0625rem 1.375rem;
  gap: 0.5rem;
}

.btn-chat svg {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-chat:hover {
  background: rgba(1, 1, 1, 0.8);
}

/* Outline Button - White Border */
.btn-outline {
  background: transparent;
  color: #0f0f0f;
  border: 1px solid #0f0f0f;
  backdrop-filter: blur(3px);
  padding: 0.8125rem 1.75rem;
  border: 1px solid white;
}

.btn-outline:hover {
  background: rgba(15, 15, 15, 0.05);
}
.btn-outline.btn_w_icon {
  padding-right: 10px;
  gap: 10px;
}

/* Outline Button with Icon */
.btn-outline-icon {
  background: transparent;
  color: #0f0f0f;
  border: 1px solid #0f0f0f;
  backdrop-filter: blur(3px);
  padding: 0.3125rem 0.375rem;
  gap: 2.25rem;
}

.btn-outline-icon:hover {
  background: rgba(15, 15, 15, 0.05);
}

.btn-outline-gray {
  border-color: #5A5A5A;
  background-color: transparent;
}
/* Call to Action Button - Dark with Arrow */
.btn-cta-dark {
  background: rgba(9, 9, 9, 0.69);
  color: #fefefe;
  backdrop-filter: blur(3.2px);
  padding: 0.3125rem 0.375rem;
  gap: 2.25rem;
}

.btn-cta-dark .btn-icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  padding: 0.125rem 0.1875rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  background: #fefefe;
  backdrop-filter: blur(2.8px);
}

.btn-cta-dark:hover {
  background: rgba(9, 9, 9, 0.8);
}

/* Full Width Dark Button */
.btn-full-dark {
  background: #222731;
  color: #fefefe;
  width: 100%;
  padding: 1.0625rem 1.375rem;
  justify-content: center;
}

.btn-full-dark:hover {
  background: #2a3340;
}

/* Emergency Button - Outline with Phone Icon */
.btn-emergency {
  background: transparent;
  color: #0f0f0f;
  border: 1px solid #fefefe;
  backdrop-filter: blur(3px);
  padding: 0.8125rem 1.75rem;
  gap: 1.125rem;
}

.btn-emergency svg {
  width: 1.75rem;
  height: 1.75rem;
}

.btn-emergency:hover {
  background: rgba(15, 15, 15, 0.05);
}

/* Text Link Button */
.btn-link {
  background: transparent;
  color: #0f0f0f;
  border: none;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-offset: auto;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 400;
  gap: 0.5rem;
}

.btn-link:hover {
  opacity: 0.8;
}

.btn-link svg {
  width: 1.875rem;
  height: 1.875rem;
}

/* Calculate Rates Button - Extended Dark */
.btn-calculate {
  background: #222731;
  color: #ffffff;
  padding: 1.0625rem 1.375rem;
  width: 100%;
  max-width: 17.5rem;
}

.btn-calculate:hover {
  background: #2a3340;
}

/* Send Message Button */
.btn-send {
  background: #222731;
  color: #fefefe;
  padding: 1.0625rem 1.375rem;
}

.btn-send:hover {
  background: #2a3340;
}

/* Icon Wrapper Styles */
.btn-icon svg {
  width: 1.875rem;
  height: 1.875rem;
  scale: 1.3;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .btn {
    font-size: 1.125rem;
    padding: 0.875rem 1.125rem;
  }

  .btn-primary-white,
  .btn-outline-icon,
  .btn-cta-dark {
    gap: 1.5rem;
  }

  .btn-primary-white .btn-icon,
  .btn-primary-dark .btn-icon,
  .btn-cta-dark .btn-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .btn-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .btn-calculate,
  .btn-full-dark {
    width: 100%;
    max-width: 100%;
  }
}

/* Button Group Utilities */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Arrow Icon SVG - Reusable */
.arrow-icon {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}

/* Dark arrow for light backgrounds */
.arrow-dark path {
  fill: #0f0f0f;
}

/* Light arrow for dark backgrounds */
.arrow-light path {
  fill: #fefefe;
}
