/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.contact-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(24, 78, 48, 0.85) 0%,
    rgba(56, 129, 86, 0.75) 100%
  );
}

.contact-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
  padding: 4rem 0;
  background: var(--light-gray);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.method-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon {
  background: var(--gradient-gold);
  transform: scale(1.1);
}

.method-icon i {
  font-size: 2rem;
  color: var(--white);
}

.method-card h3 {
  font-size: 1.5rem;
  color: var(--green-pea);
  margin-bottom: 1rem;
}

.method-card p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.method-link {
  display: inline-block;
  color: var(--amazon-green);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.method-link:hover {
  color: var(--old-gold);
  transform: scale(1.05);
}

.availability {
  display: block;
  font-size: 0.9rem;
  color: var(--old-gold);
  font-weight: 500;
  background: rgba(207, 176, 72, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  margin-top: 1rem;
}

/* Main Contact Section */
.main-contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.8rem;
  color: var(--green-pea);
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.info-cards {
  margin-bottom: 2.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: var(--amazon-green);
  color: var(--white);
  transform: translateX(10px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--amazon-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: var(--old-gold);
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.info-content h4 {
  color: var(--green-pea);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.info-card:hover .info-content h4 {
  color: var(--white);
}

.info-content p {
  color: var(--medium-gray);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.info-card:hover .info-content p {
  color: rgba(255, 255, 255, 0.9);
}

.emergency-contact {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.emergency-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.emergency-contact h4 i {
  color: #ffeb3b;
  margin-right: 0.5rem;
}

.emergency-contact p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.emergency-number {
  display: inline-block;
  color: #ffeb3b;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.emergency-number:hover {
  transform: scale(1.05);
}

/* Contact Form Section */
.contact-form-section {
  position: sticky;
  top: 120px;
}

.form-container {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.form-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  opacity: 0.9;
}

.premium-form {
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  color: var(--green-pea);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amazon-green);
  box-shadow: 0 0 0 3px rgba(56, 129, 86, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.form-options {
  margin: 2rem 0;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--amazon-green);
}

.checkbox-group label {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin: 0;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: var(--gradient-gold);
  color: var(--dark-gray);
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(207, 176, 72, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading i {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--dark-gray);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--amazon-green);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-guarantee i {
  color: var(--old-gold);
}

/* Quick Quote Section */
.quick-quote {
  padding: 6rem 0;
  background: var(--light-gray);
}

.quote-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quote-header h2 {
  font-size: 2.8rem;
  color: var(--green-pea);
  margin-bottom: 1rem;
}

.quote-header p {
  font-size: 1.2rem;
  color: var(--medium-gray);
}

.quote-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.quote-steps {
  display: flex;
  background: var(--gradient-primary);
  padding: 0;
}

.step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.step.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.step-number {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--old-gold);
  color: var(--dark-gray);
}

.quote-content {
  padding: 3rem;
}

.quote-step-content {
  display: none;
}

.quote-step-content.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.quote-step-content h3 {
  font-size: 1.8rem;
  color: var(--green-pea);
  text-align: center;
  margin-bottom: 2rem;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-option {
  background: var(--light-gray);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-option:hover,
.service-option.selected {
  background: var(--amazon-green);
  color: var(--white);
  transform: translateY(-5px);
  border-color: var(--old-gold);
}

.service-option i {
  font-size: 2.5rem;
  color: var(--amazon-green);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-option:hover i,
.service-option.selected i {
  color: var(--old-gold);
}

.service-option h4 {
  color: var(--green-pea);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-option:hover h4,
.service-option.selected h4 {
  color: var(--white);
}

.service-option p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.service-option:hover p,
.service-option.selected p {
  color: rgba(255, 255, 255, 0.9);
}

.facility-inputs,
.contact-inputs,
.requirements-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.input-group {
  position: relative;
}

.input-group label {
  display: block;
  color: var(--green-pea);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--amazon-green);
  box-shadow: 0 0 0 3px rgba(56, 129, 86, 0.1);
}

.quote-results {
  text-align: center;
}

.results-header {
  margin-bottom: 2rem;
}

.results-header i {
  font-size: 4rem;
  color: var(--amazon-green);
  margin-bottom: 1rem;
}

.results-header h3 {
  color: var(--green-pea);
  margin-bottom: 0;
}

.results-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.result-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
}

.result-label {
  display: block;
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.result-value {
  display: block;
  color: var(--amazon-green);
  font-size: 1.5rem;
  font-weight: bold;
}

.results-footer {
  background: rgba(56, 129, 86, 0.1);
  padding: 1rem;
  border-radius: 12px;
  color: var(--amazon-green);
}

.results-footer i {
  margin-right: 0.5rem;
}

/* NEW QUOTE NAVIGATION STYLES */
.quote-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
  padding: 2rem 3rem;
  background: var(--light-gray);
}

.quote-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.quote-btn.primary {
  background: var(--gradient-gold);
  color: var(--dark-gray);
}

.quote-btn.secondary {
  background: var(--light-gray);
  color: var(--medium-gray);
  border: 2px solid var(--medium-gray);
}

.quote-btn.submit {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quote-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.quote-btn.loading .btn-text::after {
  content: "...";
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%,
  20% {
    content: "...";
  }
  40% {
    content: "..";
  }
  60% {
    content: ".";
  }
  80%,
  100% {
    content: "";
  }
}

/* NEW CHECKBOX MULTI STYLES */
.checkbox-group-multi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.75rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.checkbox-option:hover {
  background: rgba(56, 129, 86, 0.1);
}

.checkbox-option input[type="checkbox"] {
  margin: 0;
}

/* NEW QUOTE SUMMARY STYLES */
.quote-summary {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.quote-summary h4 {
  color: var(--green-pea);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.next-steps {
  display: grid;
  gap: 1rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 8px;
}

.step-item i {
  color: var(--amazon-green);
  width: 20px;
}

.priority-options {
  margin-top: 1.5rem;
}

.checkbox-option.priority {
  background: rgba(207, 176, 72, 0.1);
  border: 2px solid var(--old-gold);
}

/* Location Section */
.location-section {
  padding: 6rem 0;
  background: var(--white);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info h2 {
  font-size: 2.8rem;
  color: var(--green-pea);
  margin-bottom: 1.5rem;
}

.location-info > p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.location-details {
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--old-gold);
  width: 30px;
  margin-top: 0.25rem;
}

.detail-item h4 {
  color: var(--green-pea);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.detail-item p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.visit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 129, 86, 0.3);
}

.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--medium-gray);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--amazon-green);
  margin-bottom: 1rem;
}

.map-placeholder h4 {
  color: var(--green-pea);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amazon-green);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.map-link:hover {
  color: var(--old-gold);
  transform: scale(1.05);
}

/* Contact FAQ */
.contact-faq {
  padding: 6rem 0;
  background: var(--light-gray);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item-contact {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-contact:hover {
  box-shadow: var(--shadow-hover);
}

.faq-question-contact {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
}

.faq-question-contact:hover {
  background: var(--light-gray);
}

.faq-question-contact h4 {
  color: var(--green-pea);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question-contact i {
  color: var(--amazon-green);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.faq-item-contact.active .faq-question-contact i {
  transform: rotate(45deg);
  color: var(--old-gold);
}

.faq-answer-contact {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-contact.active .faq-answer-contact {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
}

.faq-answer-contact p {
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-section {
    position: static;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .methods-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-options {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .facility-inputs,
  .contact-inputs,
  .requirements-inputs {
    grid-template-columns: 1fr;
  }

  .results-content {
    grid-template-columns: 1fr;
  }

  .quote-steps {
    flex-direction: column;
  }

  .checkbox-group-multi {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .premium-form {
    padding: 2rem;
  }

  .quote-content {
    padding: 2rem;
  }

  .quote-navigation {
    padding: 1.5rem 2rem;
  }

  .method-card {
    padding: 2rem 1.5rem;
  }
}
