:root {
  --business-card-enhanced: rgba(140, 163, 64, 0.05);
  --business-card-border-enhanced: rgba(140, 163, 64, 0.15);
  --business-glass-enhanced: rgba(255, 255, 255, 0.08);
  --expanded-card-height: 420px;
  --expanded-transition-duration: 360ms;
  --expanded-easing: cubic-bezier(.2,.8,.2,1);
  
  /* Colors */
  --primary-green: #7B8950;
  --primary-yellow: #FCB117;
  --primary-yellow-dark: #E6AA28;
  --white: #FFFFFF;
  --black: #101014;
  --text-muted: rgba(255, 255, 255, 0.6);
}

/* ========================================= */
/* CONTACT PAGE STYLES  */
/* ========================================= */

/* Hero Section with Form */
.contact-hero-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 20px 80px;
  gap: 48px;
  max-width: 1280px;
  width: 100%;
  height: auto;
  min-height: 818px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  padding: 0px;
  gap: 24px;
  width: 40%; 
  max-width: 429px; 
  height: auto; 
  flex-shrink: 0;
}

.connect-text {
  width: 100%; 
  height: auto; 
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.hero-title {
  width: 100%; 
  height: auto; 
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 72px); 
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #808C4A;
  text-align: left;
}

.contact-form-container {
  width: 60%; 
  max-width: 803px; 
  height: auto;
  min-height: 818px;
  background: rgba(53, 55, 49, 0.19);
  border-radius: 20px;
  padding: 44px 40px;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 36px;
  width: 100%;
  height: auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 17px;
  width: 100%;
  height: 99px;
}

.input-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  max-width: 363px;
  height: 99px;
}

.form-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #FFFFFF;
}

.form-input, .form-textarea {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  border: 1px solid rgba(123, 137, 80, 0.36);
  border-radius: 2px;
  background: transparent;
  padding: 8px 16px;
  font-family: 'Mulish';
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #7B8950;
  background: rgba(123, 137, 80, 0.1);
}

.form-textarea {
  height: 187px;
  resize: none;
  padding: 16px;
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.dropdown-selected {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  width: 100%;
  height: 60px;
  border: 1px solid rgba(123, 137, 80, 0.36);
  border-radius: 2px;
  background: transparent;
  font-family: 'Mulish';
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.dropdown-selected:hover {
  border-color: #7B8950;
}

.dropdown-selected.active {
  border-color: #7B8950;
  background: rgba(123, 137, 80, 0.1);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: #FFFFFF;
}

.dropdown-selected.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  margin-top: 4px;
}

.dropdown-options.show {
  display: block;
}

.dropdown-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 24px;
  gap: 10px;
  width: 100%;
  height: 50px;
  background: linear-gradient(94.02deg, rgba(52, 49, 44, 0.5) 0%, rgba(36, 33, 27, 0.5) 100%), #FFFFFF;
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #000000;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dropdown-option:first-child {
  border-radius: 20px 20px 0px 0px;
}

.dropdown-option:last-child {
  border-radius: 0px 0px 20px 20px;
}

.dropdown-option:hover {
  background: linear-gradient(94.02deg, rgba(123, 137, 80, 0.2) 0%, rgba(123, 137, 80, 0.1) 100%), #FFFFFF;
}

.dropdown-option.active {
  background: linear-gradient(94.02deg, rgba(123, 137, 80, 0.3) 0%, rgba(123, 137, 80, 0.2) 100%), #FFFFFF;
}

.submit-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13.5px 24px;
  gap: 10px;
  width: 185px;
  height: 50px;
  background: #FCB117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 36px;
}

.submit-button:hover {
  background: #E6AA28;
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  gap: 80px;
  width: 100%; 
  max-width: 1209px; 
  height: auto; 
  margin: 0 auto;
  box-sizing: border-box;
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 80px;
  width: 100%;
  height: auto;
}

.map-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%; 
  max-width: 1200px; 
  height: auto;
}

.map-title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
  height: auto;
}

.map-title {
  width: auto;
  height: auto;
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  letter-spacing: -0.02em;
  color: #7B8950;
  text-align: left;
}

.map-subtitle {
  width: 100%;
  height: auto;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

.map-content {
  width: 100%;
  max-width: 1209px;
  height: 469px;
  background: rgba(0, 0, 0, 0.001);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: #F7F7F7;
  border-radius: 24px;
}

.map-overlay {
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  background: linear-gradient(135deg, #E5E5E5 0%, #CDCDCD 100%);
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FCB117;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-pin-1 {
  left: 77.75%;
  top: 25.02%;
}

.map-pin-2 {
  left: 11.09%;
  top: 56.73%;
}

.map-roads {
  position: absolute;
  left: 3.72%;
  right: 7.66%;
  top: 11.03%;
  bottom: 15.52%;
}

/* Contact Methods Section */
.contact-methods-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  gap: 80px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-methods {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 1232px;
  height: 196px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 16px;
  gap: 10px;
  width: 290px;
  height: 196px;
  background: rgba(123, 137, 80, 0.25);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(123, 137, 80, 0.35);
  transform: translateY(-5px);
}

.contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FCB117;
  font-size: 20px;
}

.contact-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-align: center;
}

.contact-detail {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.contact-note {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-align: center;
}

/* Technical Support Section */
.tech-support-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  gap: 80px;
  width: 100%;
  max-width: 1232px;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  height: auto;
}

.section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #7B8950;
}

.section-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.support-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 1232px;
  height: auto;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 16px;
  gap: 10px;
  width: 290px;
  height: 191px;
  background: rgba(123, 137, 80, 0.25);
  border-radius: 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.support-card:hover {
  background: rgba(123, 137, 80, 0.35);
  transform: translateY(-5px);
}

.support-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 12px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #808C4A;
}

/* Direct Support Section */
.direct-support-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  gap: 68px;
  width: 100%;
  max-width: 1077px;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
}

.support-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 1077px;
  height: auto;
}

.support-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 16px;
  gap: 10px;
  width: 290px;
  height: 201px;
  background: rgba(123, 137, 80, 0.25);
  border-radius: 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.support-option:hover {
  background: rgba(123, 137, 80, 0.35);
  transform: translateY(-5px);
}

/* Additional Info Sections */
.info-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  gap: 62px;
  width: 100%;
  max-width: 1284px;
  height: auto; 
  margin: 0 auto;
  box-sizing: border-box;
}

.info-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 66px 40px;
  gap: 10px;
  width: 100%;
  min-height: 240px;
  background: #191916;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.info-section:hover {
  background: rgba(25, 25, 22, 0.8);
  transform: translateX(10px);
}

.info-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 100%;
  height: auto;
}

.info-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: auto;
  height: auto;
}

.info-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #7B8950;
}

.info-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}

.info-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FCB117;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Background Elements */
.contact-bg-orb {
  position: absolute;
  width: 182px;
  height: 182px;
  background: #8CA340;
  filter: blur(135px);
  opacity: 0.6;
  z-index: -1;
}

.contact-orb-1 {
  left: calc(50% - 182px/2 - 216px);
  top: 111px;
}

.contact-orb-2 {
  left: calc(50% - 182px/2 - 828px);
  top: 1043px;
}

.contact-orb-3 {
  left: calc(50% - 182px/2 + 392px);
  top: 1025px;
}

/* ========================================= */
/* COLLAPSIBLE FAQ SECTION */
/* ========================================= */

/* Collapsible FAQ Section */
.faq-collapsible-section {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 240px;
  height: auto;
}

.faq-collapsible-section .info-header {
  cursor: pointer;
  margin-bottom: 0;
}

.faq-collapsible-section.active {
  background: #191916;
  padding-bottom: 0;
}

.faq-collapsible-section.active .info-icon i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* FAQ Content Wrapper */
.faq-content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.faq-collapsible-section.active .faq-content-wrapper {
  max-height: 3000px;
}

/* FAQ Container */
.faq-container-expanded {
  width: 100%;
  padding: 40px 0 0 0;
}

.faq-items-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

/* FAQ Item Styles */
.faq-item-expanded {
  border-bottom: 0.5px solid #A6A7A7;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-expanded:first-child {
  border-top: 0.5px solid #A6A7A7;
}

/* FAQ Question */
.faq-question-expanded {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
}

.faq-question-expanded:hover {
  background: rgba(255, 255, 255, 0.05);
}

.question-text-expanded {
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #A6A7A7;
  flex: 1;
  margin: 0;
}

.question-arrow-expanded {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #A6A7A7;
}

.faq-item-expanded.active .question-arrow-expanded {
  transform: rotate(180deg);
  color: #A6A7A7;
}

/* FAQ Answer */
.faq-answer-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.faq-item-expanded.active .faq-answer-expanded {
  max-height: 500px;
}

.answer-content-expanded {
  padding: 16px;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  border-top: 0.5px solid #A6A7A7;
}

/* Active States */
.faq-item-expanded.active .faq-question-expanded {
  background: rgba(255, 255, 255, 0.08);
}

.faq-item-expanded.active .question-text-expanded {
  color: #FFFFFF;
}

/* Hover Effects */
@media (hover: hover) {
  .faq-question-expanded:hover .question-text-expanded {
    color: #FFFFFF;
  }
  
  .faq-question-expanded:hover .question-arrow-expanded {
    color: #FFFFFF;
  }
}

/* Animation for smooth opening */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item-expanded.active .faq-answer-expanded {
  animation: fadeIn 0.3s ease;
}

/* Ensure proper focus states for accessibility */
.faq-question-expanded:focus {
  outline: 2px solid #FCB117;
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
.faq-question-expanded,
.question-arrow-expanded,
.faq-answer-expanded {
  transition: all 0.3s ease;
}

/* ========================================= */
/* WARRANTY SECTION STYLES  */
/* ========================================= */

.warranty-collapsible-section {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 240px;
  height: auto;
}

.warranty-collapsible-section .info-header {
  cursor: pointer;
  margin-bottom: 0;
}

.warranty-collapsible-section.active {
  background: #191916;
  padding-bottom: 0;
}

.warranty-collapsible-section.active .info-icon i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Warranty Content Wrapper */
.warranty-content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.warranty-collapsible-section.active .warranty-content-wrapper {
  max-height: 3000px;
}

/* Main Warranty Section Styles */
.warranty-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0 0 0;
  gap: 60px;
  width: 100%;
  max-width: 1186px;
  margin: 0 auto;
}

.highlight-text {
  color: #FCB117 !important;
  font-weight: 600;
}

.warranty-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
  max-width: 632px;
  height: auto;
}

.warranty-title {
  width: 100%;
  height: auto;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 40px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0;
}

.warranty-subtitle {
  width: 100%;
  height: auto;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.warranty-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FCB117;
  font-size: 18px;
  flex-shrink: 0;
}

.warranty-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 60px;
  width: 100%;
  height: auto;
}

.warranty-products {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 64px;
  width: 100%;
  height: auto;
}

.products-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0px;
  gap: 64px 44px;
  width: 100%;
  height: auto;
}

.warranty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 16px;
  gap: 10px;
  width: calc(50% - 22px);
  min-width: 280px;
  height: auto;
  min-height: 180px;
  background: rgba(123, 137, 80, 0.25);
  border-radius: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.warranty-card:hover {
  background: rgba(123, 137, 80, 0.35);
  transform: translateY(-5px);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 100%;
  height: auto;
}

.card-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  height: auto;
}

.card-title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 12px;
  width: 100%;
  height: auto;
}

.card-title {
  width: 100%;
  height: auto;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.5vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
}

.card-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
  height: auto;
}

.detail-text {
  width: 100%;
  height: auto;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.875rem, 1vw, 16px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.return-policy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 100%;
  height: auto;
}

.return-policy-title {
  width: 100%;
  height: auto;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 36px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #7B8950;
  margin: 0 0 24px 0;
  text-align: center;
}

.return-cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 0px;
  gap: 24px;
  width: 100%;
  height: auto;
}

.return-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23px 16px;
  gap: 10px;
  width: calc(50% - 12px);
  min-width: 280px;
  height: auto;
  min-height: 180px;
  background: rgba(123, 137, 80, 0.25);
  border-radius: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.return-card:hover {
  background: rgba(123, 137, 80, 0.35);
  transform: translateY(-5px);
}

.return-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  
}

.return-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13.5px 24px;
  gap: 10px;
  width: auto;
  min-width: 200px;
  margin-bottom: 30px;
  height: 50px;
  background: #FCB117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.return-button:hover {
  background: #E6AA28;
  transform: translateY(-2px);
}

/* ========================================= */
/* RESPONSIVE DESIGN */
/* ========================================= */

/* Tablet Breakpoint (1024px and below) */
@media (max-width: 1024px) {
  .contact-hero-section {
    padding: 120px 20px 60px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    min-height: auto;
  }

  .return-button-container{
    margin-bottom: 10px;
  }

  .contact-hero-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    text-align: center;
  }

  .contact-form-container {
    width: 100%;
    max-width: 1200px;
    min-height: auto;
  }

  /* Contact Methods */
  .contact-methods {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    gap: 20px;
  }

  .contact-card {
    width: calc(50% - 10px);
  }

  /* Support Cards */
  .support-cards,
  .support-options {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .support-card,
  .support-option {
    width: calc(50% - 10px);
  }

  /* Info Sections */
  .info-header {
    gap: 40px;
  }

  .info-content {
    width: 100%;
  }

  /* Map Section */
  .map-section {
    padding: 60px 20px;
    gap: 60px;
  }

  .map-content {
    height: 400px;
  }

  /* Warranty Section */
  .warranty-section {
    gap: 50px;
    padding: 40px 20px 0 20px;
  }
  
  .warranty-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .warranty-content {
    max-width: 100%;
  }
  
  .products-grid {
    gap: 40px 30px;
  }
  
  .warranty-card {
    width: calc(50% - 15px);
    min-width: 250px;
  }
  
  .return-cards-container {
    gap: 20px;
  }
  
  .return-card {
    width: calc(50% - 10px);
    min-width: 250px;
  }
}

/* Mobile Breakpoint (768px and below) */
@media (max-width: 768px) {
  .contact-hero-section {
    padding: 100px 16px 40px;
    gap: 32px;
  }

  .hero-title {
    font-size: 42px;
  }

  .connect-text {
    font-size: 18px;
  }

  .contact-form-container {
    padding: 32px 24px;
  }

  .contact-form {
    gap: 32px;
  }

  .form-row {
    flex-direction: column;
    height: auto;
    gap: 32px;
  }

  .input-field {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Stack all cards vertically */
  .contact-methods,
  .support-cards,
  .support-options {
    flex-direction: column;
    gap: 16px;
  }

  .contact-card,
  .support-card,
  .support-option {
    width: 100%;
  }

  /* Map Section - Hidden as requested */
  .map-section {
    display: none;
  }

  /* Section Headers */
  .section-header {
    width: 100%;
    height: auto;
  }

  .section-title {
    font-size: 36px;
    line-height: 48px;
  }

  .section-subtitle {
    font-size: 18px;
    line-height: 27px;
  }

  /* Info Sections */
  .info-section {
    padding: 40px 24px;
  }

  .info-header {
    flex-direction: row;
    gap: 24px;
    text-align: left;
  }

  .info-title {
    font-size: 36px;
    line-height: 48px;
  }

  .info-description {
    font-size: 18px;
    line-height: 27px;
  }

  .submit-button {
    width: 100%;
    margin-top: 24px;
  }

  /* FAQ Responsive */
  .faq-container-expanded {
    padding: 32px 0 0 0;
  }
  
  .question-text-expanded {
    font-size: 18px;
  }
  
  .answer-content-expanded {
    font-size: 18px;
    padding: 12px 16px;
  }
  
  .faq-question-expanded {
    padding: 14px 16px;
    min-height: 52px;
  }

  /* Warranty Section */
  .warranty-section {
    gap: 40px;
    padding: 40px 16px 0 16px;
  }
  
  .products-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .warranty-card {
    width: 100%;
    min-width: auto;
  }
  
  .return-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .return-card {
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }

  .return-button-container{
    margin-bottom: 10px;
  }
  
  .return-button {
    width: 100%;
    max-width: 300px;
  }
  
  .warranty-collapsible-section.active {
    min-height: 1500px;
  }
}

/* Small Mobile Breakpoint (480px and below) */
@media (max-width: 480px) {
  .contact-hero-section {
    padding: 80px 12px 32px;
    gap: 24px;
  }

  .hero-title {
    font-size: 32px;
  }

  .connect-text {
    font-size: 16px;
  }

  .contact-form-container {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .contact-form {
    gap: 24px;
  }

  .form-group {
    gap: 12px;
  }

  .form-row {
    gap: 24px;
  }

  .form-label {
    font-size: 16px;
  }

  .form-input,
  .form-textarea,
  .dropdown-selected {
    height: 50px;
    font-size: 14px;
  }

  .form-textarea {
    height: 120px;
  }

  .dropdown-option {
    font-size: 16px;
    height: 45px;
    padding: 8px 20px;
  }

  /* Contact Cards */
  .contact-card,
  .support-card,
  .support-option {
    padding: 20px 16px;
    border-radius: 20px;
    height: auto;
    min-height: 140px;
  }

  .contact-title,
  .support-tag {
    font-size: 18px;
  }

  .contact-detail {
    font-size: 14px;
  }

  /* Section Headers */
  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  /* Info Sections */
  .info-section {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .info-title {
    font-size: 28px;
    line-height: 36px;
  }

  .info-description {
    font-size: 16px;
    line-height: 24px;
  }

  .info-icon {
    font-size: 16px;
  }

  /* FAQ Responsive */
  .faq-container-expanded {
    padding: 24px 0 0 0;
  }
  
  .question-text-expanded {
    font-size: 16px;
  }
  
  .answer-content-expanded {
    font-size: 16px;
    padding: 10px 12px;
  }
  
  .faq-question-expanded {
    padding: 12px;
    min-height: 48px;
  }
  
  .question-arrow-expanded {
    width: 20px;
    height: 20px;
  }

  /* Background Orbs */
  .contact-bg-orb {
    width: 120px;
    height: 120px;
    filter: blur(80px);
  }

  .contact-orb-1 {
    left: -60px;
    top: 80px;
  }

  .contact-orb-2 {
    left: -80px;
    top: 600px;
  }

  .contact-orb-3 {
    left: calc(100% - 40px);
    top: 500px;
  }

  /* Warranty Section */
  .warranty-section {
    gap: 32px;
    padding: 40px 12px 0 12px;
  }
  
  .warranty-header {
    gap: 20px;
  }
  
  .warranty-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .warranty-subtitle {
    font-size: 18px;
    line-height: 27px;
  }
  
  .products-grid {
    gap: 20px;
  }
  
  .warranty-card,
  .return-card {
    padding: 20px 16px;
    border-radius: 20px;
  }
  
  .card-content {
    gap: 20px;
  }
  
  .card-details {
    gap: 12px;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  .detail-text {
    font-size: 14px;
  }
  
  .return-card {
    padding: 20px 16px;
    border-radius: 20px;
  }
  
  .return-button {
    height: 45px;
    padding: 10px 20px;
    font-size: 16px;
  }
  
  .warranty-collapsible-section.active {
    min-height: 1100px;
  }
}