/* =========================
   GLOBAL STYLES
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #171717;
  background: #ffffff;
  line-height: 1.6;
}

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

.container {
  width: min(1150px, 90%);
  margin: auto;
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid #eee;
}

.header .container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #6d3df2, #9b6cff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  display: flex;
  gap: 35px;
  font-weight: 500;
  color: #555;
}

.nav a:hover {
  color: #6d3df2;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #6d3df2;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(109, 61, 242, 0.3);
}

.btn-outline {
  border: 2px solid #6d3df2;
  color: #6d3df2;
}

.btn-google {
  background: #111;
  color: white;
}

.btn-ios {
  border: 1px solid #ddd;
}

.btn:hover {
  transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, #e8dcff, transparent 40%),
    linear-gradient(#fff, #faf8ff);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #f1eaff;
  color: #6d3df2;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
}

.hero h1 span {
  color: #6d3df2;
}

.hero p {
  margin: 25px 0;
  font-size: 18px;
  color: #555;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.stats div {
  display: flex;
  flex-direction: column;
}

.stats strong {
  font-size: 30px;
}

.stats span {
  color: #777;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
    width:500px;
    max-width: 100%;
    border-radius: 10px;
}

.phone-card {
  width: 320px;
  padding: 30px;
  border-radius: 35px;
  background: white;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);

  text-align: center;
}

.map {
  height: 230px;
  background: #f1eaff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  margin-bottom: 25px;
}

.phone-card button {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 50px;
  background: #6d3df2;
  color: white;
  font-size: 16px;
}

/* =========================
   SECTION COMMON
========================= */

section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
}

/* =========================
   FEATURES
========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  padding: 35px;
  border-radius: 25px;
  background: white;
  border: 1px solid #eee;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #f1eaff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
}

/* ==========================
   TOUR GUIDES
========================== */

.guides {
  padding: 100px 0;
  background: #fff;
}

.guides-box {
  max-width: 1000px;
}

.guides-content {
  text-align: center;
}

.guides-content h2 {
  margin: 20px 0;
  font-size: 2.5rem;
  line-height: 1.2;
}

.guides-content > p {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.guide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.guide-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(109, 61, 242, 0.12);
}

.guide-item .feature-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.guide-item h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #222;
}

.guide-item p {
  color: #666;
  line-height: 1.7;
  font-size: 0.98rem;
}

.guides .btn {
  margin-top: 10px;
}

/* ================================
   BUSINESSES SECTION
================================ */

.businesses {
  padding: 100px 0;
  background: #f8f7ff;
}


.businesses-box {
  background: linear-gradient(135deg, #ffffff, #f4f0ff);
  border-radius: 30px;
  padding: 70px;
  box-shadow: 0 20px 50px rgba(109, 61, 242, 0.08);
}


.businesses-content {
  max-width: 900px;
  margin: auto;
}


.businesses-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 20px 0;
  color: #111827;
}


.businesses-content > p {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 45px;
}


/* Business Benefits Grid */

.business-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 45px;
}


.business-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(109, 61, 242, 0.08);
}


.business-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(109, 61, 242, 0.12);
}


.business-item .feature-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: #6d3df2;
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}


.business-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #111827;
}


.business-item p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}


/* Button */

.businesses .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


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

@media (max-width: 900px) {

  .businesses-box {
    padding: 45px 30px;
  }


  .businesses-content h2 {
    font-size: 34px;
  }


  .business-benefits {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 600px) {

  .businesses {
    padding: 60px 0;
  }


  .businesses-box {
    border-radius: 20px;
    padding: 35px 20px;
  }


  .businesses-content h2 {
    font-size: 28px;
  }


  .business-item {
    flex-direction: column;
  }

}

/* =========================
 PREMIUM
========================= */

.premium {
  background: #faf7ff;
}

.premium-box {
  background: linear-gradient(135deg, #6d3df2, #8d63ff);

  color: white;
  padding: 60px;
  border-radius: 35px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-box h2 {
  font-size: 45px;
  margin: 20px 0;
}

.premium-box p {
  max-width: 500px;
  opacity: 0.9;
}

.premium-box ul {
  list-style: none;
  margin: 25px 0;
}

.premium-box li {
  margin: 10px 0;
}

.premium-price {
  background: white;
  color: #111;
  padding: 40px;
  border-radius: 30px;
  text-align: center;
}

.premium-price strong {
  display: block;
  font-size: 55px;
}

/* =========================
 REVIEWS
========================= */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  padding: 35px;
  border-radius: 25px;
  background: #fafafa;
}

.stars {
  color: #ffb400;
  margin-bottom: 15px;
}

.review-card span {
  color: #777;
}

/* =========================
 FAQ
========================= */

.faq-list {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  padding: 25px;
  border-bottom: 1px solid #ddd;
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  color: #666;
}

/* =========================
 FOOTER
========================= */

.footer {
  background: #111;
  color: white;
  padding: 50px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand h2 {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: #ccc;
}

.copyright {
  width: 100%;
  margin-top: 30px;
  color: #777;
  text-align: center;
}

/* =========================
 MOBILE RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .header-buttons .btn-ios, .header-buttons .btn-google {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons,
  .stats {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .hero h1 {
    font-size: 45px;
  }
  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .premium-box {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .premium-box h2 {
    font-size: 35px;
  }

  .footer .container {
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 36px;
  }

  .stats {
    gap: 25px;
  }

  .phone-card {
    width: 280px;
  }

  .section-title h2 {
    font-size: 32px;
  }
}

/* PRIVACY POLICY */

.text-section {
  padding-top: 1rem;
}

.text-section .section-title {
  text-align: left;
}
.text-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-section ul {
  margin-left: 2rem;
}

.text-section p, .text-section ul {
  margin-bottom: 1rem;
}

.text-section a {
  color: #6d3df2
}
