
    /* Header */
.header {
  background: linear-gradient(135deg, rgba(31, 111, 120, 0.6) 100%, rgba(15, 63, 70, 0.6) 100%), url(https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80) center / cover;
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 77, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header h1 {
  font-size: 48px;
  font-weight: var(--heading-1-weight);
  color: var(--background-white);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: var(--paragraph-large-size);
  font-weight: var(--paragraph-large-weight);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container */

/* Main Content */
.main-content {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Form Card */
.contact-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(15, 63, 70, 0.1);
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.card-header {
  margin-bottom: 32px;
}

.card-header h2 {
  font-size: var(--heading-2-size);
  font-weight: var(--heading-2-weight);
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-header p {
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-normal-weight);
  color: var(--text-muted);
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-medium-weight);
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-normal-weight);
  color: var(--text-dark);
  background: var(--background-light);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(31, 111, 120, 0.1);
}

.form-control::placeholder {
  color: #a0b3b0;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: var(--paragraph-large-size-size);
  font-weight: var(--paragraph-normal-weight);
  color: var(--background-white);
  background: linear-gradient(
    135deg,
    var(--primary-color) 10%,
    var(--accent-dark)  100%
  );
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(3, 80, 88, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit i {
  font-size: 15px;
}

/* Contact Info Card */
.info-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-dark) 50%
  );
  border-radius: 16px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  box-shadow: 0 8px 20px rgba(32, 87, 94, 0.3);
}

.info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 77, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.info-content {
  position: relative;
  z-index: 2;
}

.info-header {
  margin-bottom: 32px;
}

.info-header h2 {
  font-size: var(--heading-2-size);
  font-weight: var(--heading-2-weight);
  margin-bottom: 8px;
}

.info-header p {
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-normal-weight);
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 77, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon i {
  font-size: 20px;
  color: var(--secondary-color);
}

.contact-method-content h3 {
  font-size: var(--heading-4-size-size);
  font-weight: var(--heading-3-weight);
  margin-bottom: 4px;
  color: var(--background-white);
}

.contact-method-content p {
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-small-weight);
  opacity: 0.9;
  color: var(--background-white);
  margin-bottom: 0px;
}

.contact-method-content a {
  color: white;
  transition: opacity 0.3s ease;
}

.contact-method-content a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-4px);
}

.social-link i {
  font-size: 20px;
}

/* Quick Info Section */
.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.info-box {
  background-color: var(--background-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out backwards;
  box-shadow: 0 2px 8px rgba(11, 46, 51, 0.06);
}

.info-box:nth-child(1) {
  animation-delay: 0.5s;
}

.info-box:nth-child(2) {
  animation-delay: 0.6s;
}

.info-box:nth-child(3) {
  animation-delay: 0.7s;
}

.info-box:hover {
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 46, 51, 0.12);
}

.info-box-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--hover-bg) 0%,
    var(--background-light) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.info-box-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.info-box h3 {
  font-size: var(--heading-3-size);
  font-weight: var(--heading-3-weight);
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-box p {
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-normal-weight);
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: var(--background-light);
  padding: 60px 0;
  margin-top: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: var(--heading-1-size);
  font-weight: var(--heading-1-weight);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: var(--paragraph-large-size);
  font-weight: var(--paragraph-large-weight);
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-item {
  background-color: var(--background-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  gap: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(11, 46, 51, 0.06);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(31, 111, 120, 0.15);
  border-color: var(--primary-color);
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-question h3 {
  font-size: var(--heading-4-size);
  font-weight: var(--heading-4-weight);
  color: var(--text-dark);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--hover-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.faq-answer {
  margin-top: 12px;
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-normal-weight);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Map Section */
.map-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.map-container {
  background: white;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(15, 63, 70, 0.1);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* Response Animation */
@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.form-success {
  background: #d4edda;
  border: 2px solid #c3e6cb;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: none;
  animation: successPulse 0.5s ease;
}

.form-success.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 60px 20px 80px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .info-card {
    padding: 28px 20px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 24px;
  }

  .header p {
    font-size: 14px;
  }

  .contact-card,
  .info-card {
    padding: 24px 16px;
  }

  .card-header h2,
  .info-header h2 {
    font-size: 20px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}
