@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --navy: #001a4b;
  --gold: #f4b400;
  --light-gold: #fdf8ef;
  --text-main: #333;
  --text-muted: #666;
  --border-light: #eee;
  --whatsapp: #25d366;
  --font-primary: 'Montserrat', sans-serif;
  --font-script: 'Caveat', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-main);
  line-height: 1.5;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  /* Forces layout to lock at a crisp width on desktop */
  width: 90%;
  /* Allows fluid scaling down on tablets/mobile */
  margin: 0 auto;
  padding: 0 15px;
}

/* Navbar */
.navbar {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 16px;
  margin: 0 15px;
}

.btn-calculate {
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

/* Hero Section */
.hero {
  background-image: url("../img/coverimg/hero-img-1.webp");

  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 10px;
  padding: 80px 0;
  /* Gives natural height without breaking on zoom */
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 500px;
  /* Keeps your text localized on the left side */
  z-index: 2;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 30px;
}

.gold-text {
  color: var(--gold);
}

.hero-features {
  display: flex;
  gap: 20px;
}

.h-feat {
  flex: 1;
  min-width: 120px;
}

.h-feat i {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}

.h-feat p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* Breadcrumb */
.page-breadcrumb {
  padding: 25px 0;
  font-size: 14px;
  color: #999;
}

.page-breadcrumb span {
  color: var(--text-main);
  font-weight: 600;
}

.page-breadcrumb i {
  font-size: 10px;
  margin: 0 5px;
}

/* Intro Section */
.intro-box {
  background-color: var(--light-gold);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}

.intro-text {
  flex: 1;
}

.intro-text p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-main);
  font-weight: 500;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.visa-card-img {
  flex-shrink: 0;
}

.visa-card-img img {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(197, 160, 89, 0.3));
}

/* Guide Header */
.guide-header {
  margin-bottom: 40px;
}

.guide-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}

.guide-header p {
  font-size: 16px;
  color: var(--text-muted);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.info-column {
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: #fff9e6;
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.info-column h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--navy);
}

.info-column p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.check-list {
  list-style: none;
}

.check-list li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.check-list li span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

/* Quick Facts */
.quick-facts {
  margin-bottom: 60px;
}

.facts-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.facts-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.facts-header .line {
  height: 1px;
  background: #ddd;
  flex: 1;
}

.facts-grid {
  background: #f8fbff;
  padding: 30px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fact-item i {
  width: 45px;
  height: 45px;
  border: 1px solid #d0e1f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
}

.fact-item strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}

.fact-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Why Choose Maven */
.why-choose-maven {
  display: flex;
  background: #fdfaf5;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}

.maven-content {
  flex: 1.2;
  padding: 40px;
}

.maven-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.shield-icon {
  color: var(--gold);
  font-size: 32px;
  display: flex;
}

.maven-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}

.maven-content p {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

.check-list-maven {
  list-style: none;
}

.check-list-maven li {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list-maven i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.maven-image {
  flex: 1;
}

.maven-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom CTA */
.cta-bottom {
  text-align: center;
  padding-bottom: 80px;
}

.cta-bottom h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--navy);
}

.cta-bottom p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-navy,
.btn-whatsapp,
.btn-outline {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

/* Responsive Breakdown Updates */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {


  .hero-title {
    font-size: 40px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Snaps beautifully to 2 columns on tablets */
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    /* Subtle overlay ensures text is readable if it wraps over the background face image on smaller viewports */
    background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url("assets/img/coverimg/hero-img-14.png");
  }

  .intro-box {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .visa-card-img img {
    width: 280px;
    margin: 0 auto;
  }

  .why-choose-maven {
    flex-direction: column;
  }

  .maven-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("assets/img/coverimg/hero-img-14.png");
    background-position: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .info-grid,
  .facts-grid {
    grid-template-columns: 1fr;
    /* 1 card per row on mobile screens */
  }

  .guide-header h2 {
    font-size: 24px;
  }

  .maven-content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-navy,
  .btn-whatsapp,
  .btn-outline {
    width: 100%;
  }

  .facts-header h3 {
    font-size: 18px;
  }
}