/* =====================================================
   CONTACT PAGE BANNER SECTION
===================================================== */
.contact-page-banner {
  position: relative;
  background: linear-gradient(135deg, #00c89a 0%, #0f172a 100%);
  padding: 45px 0px;
  overflow: hidden;
}

.contact-banner-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-banner-shapes .contact-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.contact-banner-shapes .contact-shape-1 {
  top: -50px;
  left: 50px;
  animation: contact-float 6s ease-in-out infinite;
}

.contact-banner-shapes .contact-shape-2 {
  bottom: -50px;
  right: 100px;
  width: 150px;
  height: 150px;
  animation: contact-float 8s ease-in-out infinite reverse;
}

@keyframes contact-float {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-20px);
  }
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-breadcrumb-nav {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.contact-breadcrumb {
  margin: 0;
  justify-content: center;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
  border-radius: 33px;
  padding: 5px 10px;
  list-style: none;
  display: flex;
  align-items: center;
}

.contact-breadcrumb-item {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}

.contact-breadcrumb-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.contact-breadcrumb-item a:hover {
  color: var(--white);
}

.contact-breadcrumb-item a:hover::after {
  width: 100%;
}

.contact-breadcrumb-item.active {
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}

.contact-breadcrumb-item + .contact-breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.7);
  padding: 0 8px;
}

.contact-banner-title {
  font-family: var(--title-font);
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: contact-fadeInUp 0.8s ease;
  letter-spacing: -1px;
}

@keyframes contact-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Contact Form Section */
.contact-form-section {
  background: #f9fafb;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  height: 100%;
}

.contact-info-description {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 12px;
}

/* Contact Details List */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.contact-detail-item:hover {
  border-left-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.contact-detail-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    rgba(0, 200, 154, 0.15) 100%
  );
  color: var(--primary-color);
  font-size: 18px;
}

.contact-detail-item:hover .contact-detail-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
}

.contact-detail-content h4 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-detail-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

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

.contact-detail-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Contact Social Wrapper */
.contact-social-wrapper {
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
}

.contact-social-wrapper h4 {
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.contact-social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
  margin-bottom: 32px;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}

.contact-form-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.contact-form-header h3 {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form-header p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Form Styles */
.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-label {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--text-primary);
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-form .form-control::placeholder {
  color: #9ca3af;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 200, 154, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Form Messages */
.form-message {
  display: none;
  padding: 20px 24px;
  border-radius: 12px;
  margin-top: 24px;
  align-items: flex-start;
  gap: 16px;
}

.form-message.show {
  display: flex;
}

.form-message i {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-message div {
  flex: 1;
}

.form-message strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.form-message p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.success-message {
  background: #d1fae5;
  border: 2px solid #10b981;
  color: #065f46;
}

.success-message i {
  color: #10b981;
}

.error-message {
  background: #fee2e2;
  border: 2px solid #ef4444;
  color: #991b1b;
}

.error-message i {
  color: #ef4444;
}

/* FAQ & Map Section - 50/50 Layout */
.faq-map-section {
  background: #f9fafb;
}

.faq-wrapper {
  height: 100%;
}

.faq-wrapper .section-title {
  margin-bottom: 0;
}

.faq-wrapper .section-subtitle {
  justify-content: flex-start;
}

.faq-wrapper .section-subtitle::before,
.faq-wrapper .section-subtitle::after {
  display: none;
}

.faq-wrapper .accordion {
  margin-top: 24px;
}

.faq-wrapper .accordion-item {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-wrapper .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.faq-wrapper .accordion-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-wrapper .accordion-header {
  margin: 0;
}

.faq-wrapper .accordion-button {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--white);
  padding: 18px 20px;
  border: none;
  transition: all 0.3s;
  box-shadow: none;
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary-color);
}

.faq-wrapper .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-wrapper .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300c89a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  transition: transform 0.3s ease-in-out;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-wrapper .accordion-body {
  padding: 0 20px 20px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-wrapper .accordion-collapse {
  border: none;
}

/* Map Wrapper - Simple Design */
.map-wrapper-simple {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 28px 24px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    rgba(0, 200, 154, 0.05) 100%
  );
  border-bottom: 3px solid var(--primary-color);
  text-align: center;
}

.map-header h3 {
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.map-header p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.map-header .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
}

.map-container-simple {
  flex: 1;
  position: relative;
  min-height: 300px;
}

.map-container-simple iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

.map-wrapper-simple:hover .map-container-simple iframe {
  filter: grayscale(0);
}

/* =====================================================
   RESPONSIVE STYLES
===================================================== */

/* Banner Responsive */
@media (max-width: 768px) {
  .contact-page-banner {
    padding: 30px 0;
  }

  .contact-banner-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .contact-breadcrumb {
    padding: 8px 16px;
    font-size: 13px;
  }

  .contact-breadcrumb-item + .contact-breadcrumb-item::before {
    padding: 0 6px;
    font-size: 14px;
  }

  .contact-banner-shapes .contact-shape {
    width: 150px;
    height: 150px;
  }

  .contact-banner-shapes .contact-shape-2 {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .contact-banner-title {
    font-size: 28px;
    letter-spacing: -0.3px;
  }

  .contact-breadcrumb {
    font-size: 12px;
    padding: 6px 14px;
  }

  .contact-breadcrumb-item + .contact-breadcrumb-item::before {
    padding: 0 5px;
    font-size: 13px;
  }
}

/* Contact Page Responsive */
@media (max-width: 991px) {
  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .contact-form-header h3 {
    font-size: 24px;
  }

  .contact-details-list {
    gap: 16px;
    margin-bottom: 24px;
  }

  .contact-detail-item {
    padding: 16px;
  }

  .map-wrapper-simple {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .contact-form-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .contact-form-header h3 {
    font-size: 22px;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-detail-content h4 {
    font-size: 15px;
  }

  .contact-detail-content p {
    font-size: 13px;
  }

  .faq-wrapper .accordion-button {
    font-size: 15px;
    padding: 16px 18px;
  }

  .faq-wrapper .accordion-body {
    padding: 0 18px 18px 18px;
    font-size: 13px;
  }

  .map-header {
    padding: 24px 20px;
  }

  .map-header h3 {
    font-size: 22px;
  }

  .map-header p {
    font-size: 13px;
  }

  .map-container-simple {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .contact-form-header h3 {
    font-size: 20px;
  }

  .contact-form-header p {
    font-size: 13px;
  }

  .contact-form .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }

  .contact-details-list {
    gap: 12px;
  }

  .contact-detail-item {
    padding: 14px;
    gap: 12px;
  }

  .faq-wrapper .accordion-button {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-wrapper .accordion-body {
    padding: 0 16px 16px 16px;
    font-size: 13px;
  }

  .map-header {
    padding: 20px 16px;
  }

  .map-header h3 {
    font-size: 20px;
  }

  .map-header p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .map-header .btn-primary {
    padding: 8px 20px;
    font-size: 13px;
  }

  .map-container-simple {
    min-height: 250px;
  }
}
