/* General Styling */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f8f8;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.6;
}

/* --- Custom Scrollbar Styling --- */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f8f8f8;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #4f46e5;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3b33cc;
}

html {
  scrollbar-color: #4f46e5 #f8f8f8;
  scrollbar-width: thin;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-left: 2rem;
}

.nav-list a {
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #4f46e5;
}

.nav-toggle {
  display: none;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}

.mobile-menu {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0.75rem 1rem;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 0.5rem;
}

.mobile-nav-list a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
  color: #4f46e5;
}

.hidden {
  display: none;
}

.main-content {
  flex-grow: 1;
}

.hero-full-width {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(to right, #6a5acd, #4169e1);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 2rem;
}

.hero-text-area {
  flex: 1;
  max-width: 600px;
  padding: 1rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #f0f0f0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-button {
  display: inline-block;
  background-color: #ffd700;
  color: #333;
  padding: 0.8rem 1.8rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
  background-color: #cccc00;
  transform: translateY(-2px);
}

.hero-image-carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.carousel-track {
  display: flex;
  width: fit-content;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0.75rem;
}

.about-us-brief {
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 64rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-text {
  color: #4b5563;
  line-height: 1.75;
  text-align: justify;
}

.popular-destinations {
  margin-bottom: 4rem;
  max-width: 72rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.destination-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.destination-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.destination-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.destination-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.destination-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.destination-location {
  color: #4a5568;
  font-size: 0.875rem;
}

.destination-description {
  margin-top: 0.5rem;
  color: #4b5563;
  text-align: justify;
  font-size: 0.875rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.detail-button {
  display: inline-block;
  background-color: #4f46e5;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.detail-button:hover {
  background-color: #3b33cc;
}

.footer {
  background-color: #4f46e5;
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: auto;
}

.footer-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-info {
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.875rem;
  max-width: 16rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.125rem;
}

.social-icons a {
  color: inherit;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #cbd5e0;
}

@media screen and (min-width: 768px) {
  .header-container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-full-width {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-text-area {
    padding-left: 0;
    padding-right: 3rem;
  }

  .hero-image-carousel {
    width: 50%;
    margin-top: 0;
  }

  .about-us-brief {
    padding: 3rem;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-info {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu:not(.hidden) {
    display: block;
  }
}

.video-section {
  background-color: #f0f4f8;
  padding: 4rem 0;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-size: 1rem;
  color: #555;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-us-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 3rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.testimonials-section {
  padding: 4rem 0;
  background-color: #f0f4f8;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #4f46e5;
  font-size: 0.95rem;
  margin-top: auto;
}

.call-to-action-section {
  background: linear-gradient(to right, #4f46e5, #6a5acd);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #333;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: #cccc00;
  transform: translateY(-3px);
}

@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .cta-title {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .feature-card,
  .testimonial-card {
    padding: 1.5rem;
  }
}

.packages-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #f8f8f8;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.package-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.package-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.package-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 0.75rem;
}

.package-duration {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #28a745;
  margin-bottom: 1rem;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
  flex-grow: 1;
}

.package-features li {
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.package-features li i {
  color: #4f46e5;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.package-button {
  display: inline-block;
  background-color: #ffd700;
  color: #333;
  padding: 0.8rem 1.5rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: auto;
}

.package-button:hover {
  background-color: #cccc00;
  transform: translateY(-2px);
}

.view-all-packages {
  margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
  .package-grid {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .package-card {
    padding-bottom: 1rem;
  }

  .package-name {
    font-size: 1.3rem;
  }

  .package-price {
    font-size: 1.1rem;
  }

  .package-info {
    padding: 1rem;
  }
}

/* Destinasi Page */
.hero-short-page {
  background: linear-gradient(to right, #6a5acd, #4169e1);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.hero-content-short {
  max-width: 800px;
}

.hero-title-short {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f0f0f0;
}

.hero-subtitle-short {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.all-destinations {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .hero-title-short {
    font-size: 3.5rem;
  }

  .hero-subtitle-short {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .hero-title-short {
    font-size: 2rem;
  }

  .hero-subtitle-short {
    font-size: 0.95rem;
  }

  .all-destinations {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* Intro Section for Destination Page */
.intro-destinations {
  padding: 3rem 0;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.intro-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 1.5rem auto 0 auto;
  line-height: 1.7;
}

/* Destination Categories Section */
.destination-categories {
  padding: 4rem 0;
  text-align: center;
  background-color: #f8f8f8;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.category-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 3rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.category-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.category-card p {
  font-size: 0.9rem;
  color: #555;
}

.destination-category-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5;
  text-align: left;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-icon-small {
  font-size: 1.8rem;
  color: #6a5acd;
}

.faq-section {
  padding: 4rem 0;
  background-color: #f0f4f8;
  text-align: center;
}

.faq-accordion {
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background-color: #ffffff;
  color: #333;
  padding: 1.2rem 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq-question:hover,
.faq-question.active {
  background-color: #f5f5f5;
  color: #4f46e5;
}

.faq-answer {
  background-color: #fcfcfc;
  padding: 1rem 1.5rem;
  text-align: left;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-answer.hidden {
  display: none;
}

.travel-tips-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #fff;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.tip-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tip-icon {
  font-size: 3rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.tip-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .intro-text {
    font-size: 1rem;
  }
  .destination-category-heading {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .category-card {
    padding: 1.5rem;
  }
  .category-icon {
    font-size: 2.5rem;
  }
  .category-card h3 {
    font-size: 1.2rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }
  .faq-answer {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  .tips-grid {
    gap: 1.5rem;
  }
  .tip-card {
    padding: 1.5rem;
  }
  .tip-icon {
    font-size: 2.5rem;
  }
  .tip-card h3 {
    font-size: 1.2rem;
  }
}

.faq-section {
  padding: 4rem 0;
  background-color: #f8f8f8; 
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden; 
}

.faq-question {
  padding: 1.5rem 2rem;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question .faq-toggle-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem; 
  line-height: 1.6;
  font-size: 0.95rem;
  color: #555;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
}

.faq-answer.show {
  max-height: 200px;
  padding-top: 1rem;
}

.faq-answer.hidden {
  display: none;
}

/* page kontak */
.hero-short-page {
    background: linear-gradient(to right, #6a5acd, #4169e1), url('../assets/images/hero-contact.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-short {
    position: relative;
    z-index: 2;
}

.hero-title-short {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle-short {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-info-section {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.contact-info-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1.2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    padding: 4rem 0;
    background-color: #f0f2f5;
}

.contact-form-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    color: #333;
}

.contact-form {
    max-width: 550px; 
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 94%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #3b33cc;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title-short {
        font-size: 2.5rem;
    }

    .hero-subtitle-short {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact-form {
        max-width: 90%;
        padding: 2rem;
    }

    .contact-form-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-short {
        font-size: 2rem;
    }

    .hero-subtitle-short {
        font-size: 0.9rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
}