/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  background-color: #ffffff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

.nav-link {
  text-decoration: none;
  color: #1e293b;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s;
  border-bottom: 3px solid;
  border-color: #3b82f6;
}

.nav-link:hover {
  color: #3b82f6;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 400px);
  padding: 80px 0;
  background-color: #ffffff;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Form Section */
.form-section {
  flex: 1;
  min-width: 0;
  max-width: 500px;
}

.contact-badge {
  display: inline-block;
  background-color: #60a5fa;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.contact-divider {
  width: 60px;
  height: 4px;

  border-radius: 2px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 16px;
  font-weight: 400;
  color: #1e293b;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #cbd5e1;
  border-radius: 25px;
  font-size: 14px;
  font-family: inherit;
  color: #64748b;
  outline: none;
  transition: border-color 0.3s;
}

.form-group textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #60a5fa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.submit-btn {
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Illustration Section */
.illustration-section {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
}

.contact-illustration {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Footer */
.footer {
  position: relative;
  background: none;
  background-color: transparent;
  padding: 0;
  min-height: 480px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Footer decorative backgrounds */
.footer-decor {
  position: absolute;
  pointer-events: none;
  left: 0;
  width: 100%;
  max-width: 100%;
}

.footer-decor1 {
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.footer-decor2 {
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 30%;
  object-fit: fill;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 100px 40px 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Footer Left */
.footer-left {
  flex: 1;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 30px;
}

.copyright {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

/* Footer Center */
.footer-center {
  flex: 0.5;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3b82f6;
}

/* Footer Right */
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #e2e8f0;
}

.globe-icon {
  font-size: 18px;
}

.language-selector select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}

/* =====================
   HOME PAGE STYLES
   ===================== */

/* Page hero wrapper — header + hero share background */
.page-hero-wrap {
  position: relative;
  overflow: hidden;
}

.page-hero-wrap .header {
  background-color: transparent;
  position: relative;
  z-index: 5;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 40px 80px;
  gap: 40px;
  min-height: 580px;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  min-width: 0;
  max-width: 820px;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 55px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title-blue {
  color: #3b82f6;
  font-size: 45px;
  font-weight: 600;
}

.hero-desc {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #1e293b;
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 12px;
  min-width: 172px;
  transition:
    background-color 0.25s,
    transform 0.2s;
}

.store-btn:hover {
  background-color: #0f172a;
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 30px;
}

.gplay-svg {
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
}

.store-main {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* Hero Right */
.hero-right {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  min-height: 520px;
  z-index: 3;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
  object-position: left top;
}

.hero-desktop-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-desktop-img {
  width: 100%;
  max-width: 1420px;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
}

.hero-desktop-shadow {
  width: 70%;
  height: 28px;
  background: rgba(59, 130, 246, 0.45);
  filter: blur(18px);
  border-radius: 50%;
  margin-top: -10px;
  z-index: 1;
}

/* Mobile hero frame — hidden on desktop */
.hero-frame-img {
  display: none;
  width: 100%;
  max-width: 320px;
  object-fit: contain;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: #fff;
}

.features-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 14px;
}

.features-divider {
  width: 50px;
  height: 4px;
  background-color: #c4b5fd;
  border-radius: 2px;
  margin: 0 auto 60px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.feature-row-reverse {
  flex-direction: row-reverse;
}

.feature-media {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.feature-img {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
  border-radius: 16px;
}

.feature-text {
  flex: 1;
  min-width: 0;
}

.feature-text-center {
  text-align: center;
}

.feature-dot-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-dot-right {
  justify-content: center;
}

.feature-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #06b6d4;
  flex-shrink: 0;
}

.feature-desc {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

.feature-desc-center {
  text-align: center;
}

/* Packing Lists Section */
.packing-section {
  padding: 80px 0 40px;
  background-color: #fff;
  text-align: center;
}

.packing-title {
  font-size: 40px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 14px;
}

.packing-divider {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #06b6d4;
  margin: 0 auto 20px;
}

.packing-desc {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 48px;
}

.packing-img-wrap {
  display: flex;
  justify-content: center;
}

.packing-img {
  width: 100%;
  max-width: 740px;
  object-fit: contain;
}

/* Stats Section */
.stats-section {
  padding: 40px 0 60px;
  background-color: #fff;
  border-top: 1px solid #f1f5f9;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
}

.stat-number {
  font-size: 50px;
  font-weight: 800;
  color: #3b82f6;
}

.stat-label {
  font-size: 28px;
  color: #191d22;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-icon {
  font-size: 24px;
  color: #94a3b8;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: #e2e8f0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}

.testimonials-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.testimonials-sub {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 0 20px;
  /* added bottom padding for scrollbar */
}

/* Custom Scrollbar for Testimonials */
.testimonials-grid::-webkit-scrollbar {
  height: 8px;
}

.testimonials-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.testimonial-card {
  background-color: #f8f9fb;
  border-style: solid;
  border-color: #424549;
  border-width: 2px 2px 8px 2px;
  /* Top, Right, Bottom, Left */

  border-radius: 15px;
  padding: 32px;
  flex: 0 0 auto;
  width: 90%;
  max-width: 460px;
  scroll-snap-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}

.quote-mark {
  font-size: 42px;
  color: #7c3aed;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.author-role {
  font-size: 12px;
  color: #64748b;
}

.author-location {
  font-size: 12px;
  color: #94a3b8;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  font-size: 48px;
  color: #10b981;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.modal-text {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 24px;
}

.modal-close-btn {
  background-color: #3b82f6;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal-close-btn:hover {
  background-color: #2563eb;
}

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

/* Large tablet / Small desktop — 1024px */
@media (max-width: 1024px) {
  .header {
    padding: 20px 30px;
  }

  .container {
    padding: 0 30px;
  }

  .content-wrapper {
    gap: 40px;
  }

  .form-section {
    max-width: 100%;
  }

  .illustration-section {
    max-width: 400px;
  }

  .footer-inner {
    padding: 90px 30px 50px;
  }

  /* Home */
  .hero-section {
    padding: 40px 30px 60px;
  }

  .hero-title {
    font-size: 44px;
  }

  .page-hero-wrap .header {
    max-width: 100%;
  }

  .hero-bg-img {
    width: 65%;
  }

  .feature-row {
    gap: 40px;
  }

  .stat-number {
    font-size: 34px;
  }
}

/* Tablet — 768px */
@media (max-width: 768px) {
  .header {
    padding: 18px 24px;
  }

  .container {
    padding: 0 24px;
  }

  .main-content {
    padding: 50px 0;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .form-section {
    max-width: 100%;
    width: 100%;
  }

  .illustration-section {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }

  .contact-illustration {
    max-width: 340px;
    margin: 0 auto;
    display: block;
  }

  .footer {
    min-height: 420px;
  }

  .footer-inner {
    padding: 80px 24px 50px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-right {
    align-items: flex-start;
  }

  /* Home */
  .hero-section {
    flex-direction: column;
    padding: 40px 24px 60px;
    min-height: unset;
    gap: 32px;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right {
    max-width: 100%;
    width: 100%;
    min-height: 280px;
  }

  .hero-bg-img {
    display: none;
  }

  .hero-desktop-wrap {
    display: none;
  }

  .hero-frame-img {
    display: block;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 34px;
  }

  .feature-row,
  .feature-row.feature-row-reverse {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }

  .feature-img {
    max-width: 340px;
    margin: 0 auto;
    display: block;
  }

  .feature-dot-title {
    justify-content: center;
  }

  .feature-text {
    text-align: center;
  }

  .feature-desc {
    text-align: center;
  }

  .packing-img {
    max-width: 100%;
  }

  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .stats-grid {
    gap: 0;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* Large mobile — 600px */
@media (max-width: 600px) {
  .content-wrapper {
    gap: 32px;
  }

  .contact-illustration {
    max-width: 280px;
  }

  /* Home */
  .hero-title {
    font-size: 28px;
  }

  .features-title {
    font-size: 28px;
  }

  .packing-title {
    font-size: 26px;
  }

  .testimonials-title {
    font-size: 26px;
  }

  .cta-title {
    font-size: 24px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* Mobile — 480px */
@media (max-width: 480px) {
  .header {
    padding: 14px 16px;
  }

  .logo-img {
    height: 48px;
  }

  .nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }

  .container {
    padding: 0 16px;
  }

  .main-content {
    padding: 32px 0;
  }

  .contact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-badge {
    font-size: 14px;
    padding: 8px 18px;
  }

  .section-title {
    font-size: 14px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    padding: 13px 16px;
    font-size: 13px;
    border-radius: 20px;
  }

  .form-group textarea {
    border-radius: 16px;
  }

  .submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }

  .contact-illustration {
    max-width: 240px;
  }

  .footer {
    min-height: 380px;
  }

  .footer-inner {
    padding: 70px 16px 40px;
  }

  .footer-logo-img {
    height: 38px;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .language-selector {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* Home */
  .hero-section {
    padding: 32px 16px 48px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .store-btn {
    min-width: 140px;
    padding: 10px 16px;
  }

  .store-btn i {
    font-size: 22px;
  }

  .store-main {
    font-size: 14px;
  }

  .hero-frame-img {
    max-width: 260px;
  }

  .features-section {
    padding: 48px 0;
  }

  .features-title {
    font-size: 26px;
  }

  .feature-dot-title {
    font-size: 20px;
  }

  .feature-desc {
    font-size: 14px;
  }

  .packing-title {
    font-size: 24px;
  }

  .packing-desc {
    font-size: 14px;
  }

  .testimonials-section {
    padding: 48px 0;
  }

  .testimonials-title {
    font-size: 22px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .cta-title {
    font-size: 20px;
    padding: 0 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobile — 360px */
@media (max-width: 360px) {
  .contact-badge {
    font-size: 13px;
    padding: 7px 14px;
  }

  .section-title {
    font-size: 13px;
  }

  .footer-content {
    gap: 24px;
  }
}