/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #000;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
}

/* Hero container with gradient background */
.hero-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 50%, #fce7f3 100%);
}
@media (max-width: 768px) {
  .hero-container {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}

/* Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .navbar {
    margin-top: 1rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s;
}

.nav-link.active {
  color: #000;
}

.nav-link:hover {
  color: #000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}
.logo img {
  width: 100px;
}
@media (max-width: 768px) {
  .logo img {
    width: 80px;
  }
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-link {
  font-weight: 500;
  color: #000;
}

.signup-btn {
  background-color: #1615f9;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .signup-btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }
}
.signup-btn img {
  width: 20px;
}

.signup-btn:hover {
  background-color: rgba(22, 21, 249, 0.9);
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row !important;
    gap: 0;
    border-radius: 1rem;
    justify-content: space-between;
  }
  .auth-links {
    width: auto;
    justify-content: flex-end !important;
  }
}
/* Hero Content */
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .hero-content {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}
.highlight {
  background-color: #1615f9;
  color: white;
  padding: 0.25rem 1rem;
}

.hero-description {
  color: #4b5563;
  max-width: 36rem;
  line-height: 1.6;
}

/* Search Bar */
/* Hero Image */
.hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    border-radius: 1rem;
  }
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }
  .auth-links {
    width: 100%;
    justify-content: space-between;
  }
  .search-filters {
    grid-template-columns: 1fr;
  }
  .filter-item:not(:last-child)::after {
    display: none;
  }
  .filter-item {
    border-bottom: 1px solid #e5e7eb;
  }
  .filter-item:last-child {
    border-bottom: none;
  }
  .search-bar {
    flex-direction: column;
    border-radius: 1rem;
  }
  .search-btn {
    margin-top: 1rem;
    width: 100%;
    margin-left: 0;
  }
}
.features-section {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto;
}

.section-heading {
  margin-bottom: 50px;
  width: 1000px;
  max-width: 100%;
}

.section-heading h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 5px;
  padding: 40px 30px;
  width: 100%;
  max-width: 350px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(21, 21, 249, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.feature-icon img {
  width: 20px;
}

.feature-title {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-desc {
  color: #1f2937;
  font-size: 16px;
  line-height: 20px;
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 28px;
  }
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    max-width: 100%;
  }
}
.youtube-section {
  padding: 4rem 0;
  background-color: #fff;
}
.youtube-section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.youtube-section .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-header {
  margin-bottom: 20px;
}

.faq-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.faq-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.faq-image {
  flex: 1;
  min-width: 300px;
}

.faq-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-questions {
  flex: 1.5;
  min-width: 300px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

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

@media (max-width: 768px) {
  .faq-content {
    flex-direction: column;
  }
  .faq-header h1 {
    font-size: 32px;
  }
}
.footer {
  background-color: #1f2937;
  color: #fff;
  padding: 4rem 0 2rem 0;
  margin-top: 5rem;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer .footer-section .footer-logo {
  margin-bottom: 1.5rem;
}
.footer .footer-section .footer-logo img {
  width: 120px;
  filter: brightness(0) invert(1);
}
.footer .footer-section .footer-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer .footer-section h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer .footer-section .footer-links {
  list-style: none;
}
.footer .footer-section .footer-links li {
  margin-bottom: 1rem;
}
.footer .footer-section .footer-links li a {
  color: #9ca3af;
  transition: color 0.3s ease;
}
.footer .footer-section .footer-links li a:hover {
  color: #fff;
}
.footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

.why-choose-us {
  padding: 5rem 0;
  background-color: #fff;
}
.why-choose-us .section-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.why-choose-us .section-heading h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
}
@media (max-width: 768px) {
  .why-choose-us .section-heading h2 {
    font-size: 2rem;
  }
}
.why-choose-us .why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .why-choose-us .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.why-choose-us .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-choose-us .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.why-choose-us .benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.why-choose-us .benefit-item.active {
  background-color: rgba(22, 21, 249, 0.031372549);
  border-color: rgba(22, 21, 249, 0.1254901961);
  transform: translateX(10px);
  box-shadow: 0 4px 6px rgba(22, 21, 249, 0.05);
}
.why-choose-us .benefit-item .checkmark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
}
.why-choose-us .benefit-item p {
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.why-choose-us .benefits-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-us .benefits-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1rem;
}
@media (max-width: 968px) {
  .why-choose-us .benefits-image {
    min-height: 300px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-hero-container {
  min-height: 400px !important;
}

.about-hero {
  grid-template-columns: 1fr !important;
  text-align: center;
  margin: 4rem auto;
  max-width: 800px;
}
.about-hero .hero-text {
  align-items: center;
}
.about-hero .hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 2.1rem;
  }
}
.about-hero .hero-description {
  max-width: 600px;
  margin: 0 auto;
}

.privacy-policy-section {
  padding: 4rem 0;
  background-color: #fff;
}
.privacy-policy-section .policy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy-section .policy-block {
  margin-bottom: 3rem;
  animation: fadeIn 0.5s ease-in-out;
}
.privacy-policy-section .policy-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(22, 21, 249, 0.1254901961);
}
.privacy-policy-section .policy-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin: 2rem 0 1rem;
}
.privacy-policy-section .policy-block p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.privacy-policy-section .policy-block ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.privacy-policy-section .policy-block ul li {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  position: relative;
}
.privacy-policy-section .policy-block ul li:before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1615f9;
}
.privacy-policy-section .policy-block .contact-info {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.privacy-policy-section .policy-block .contact-info p {
  margin-bottom: 0.5rem;
}
.privacy-policy-section .policy-block .contact-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 2rem 0;
  }
  .privacy-policy-section .policy-block h2 {
    font-size: 1.75rem;
  }
  .privacy-policy-section .policy-block h3 {
    font-size: 1.25rem;
  }
  .privacy-policy-section .policy-block p,
  .privacy-policy-section .policy-block ul li {
    font-size: 1rem;
  }
}
/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
  background-color: #fff;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Contact Information Block */
.contact-info-block {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
  height: -moz-fit-content;
  height: fit-content;
}

.contact-info-block h2 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #4b5563;
  line-height: 1.6;
}

.contact-item a {
  color: #1615f9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: rgba(22, 21, 249, 0.8);
}

/* Contact Form Block */
.contact-form-block {
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-block h2 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1615f9;
}

.submit-btn {
  background-color: #1615f9;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: rgba(22, 21, 249, 0.9);
}

.download-app-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 50%, #fce7f3 100%);
  text-align: center;
  margin: 4rem 0;
  border-radius: 1rem;
}
.download-app-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .download-app-section h2 {
    font-size: 2rem;
  }
}
.download-app-section .download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .download-app-section .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.download-app-section .download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: #1615f9;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(22, 21, 249, 0.2);
}
.download-app-section .download-button:hover {
  background-color: rgba(22, 21, 249, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(22, 21, 249, 0.25);
}
.download-app-section .download-button:active {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .download-app-section .download-button {
    width: 80%;
    max-width: 280px;
  }
}

.list-your-hotels-section {
  padding: 5rem 0;
  background: linear-gradient(to right, #f9fafb 0%, #ede9fe 100%);
  border-radius: 1rem;
  margin: 4rem 0;
  overflow: hidden;
}
.list-your-hotels-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.list-your-hotels-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2.5rem;
  position: relative;
}
.list-your-hotels-section h2:after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #1615f9;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .list-your-hotels-section h2 {
    font-size: 2rem;
  }
}
.list-your-hotels-section img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(22, 21, 249, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.list-your-hotels-section img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(22, 21, 249, 0.15);
}
@media (min-width: 768px) {
  .list-your-hotels-section img {
    max-width: 80%;
  }
}
.list-your-hotels-section .hotel-listing-info {
  margin-top: 2rem;
  max-width: 600px;
}
.list-your-hotels-section .hotel-listing-info p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.list-your-hotels-section .hotel-listing-info .listing-cta {
  display: inline-block;
  background-color: #1615f9;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(22, 21, 249, 0.2);
}
.list-your-hotels-section .hotel-listing-info .listing-cta:hover {
  background-color: rgba(22, 21, 249, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(22, 21, 249, 0.25);
}/*# sourceMappingURL=main.css.map */