/* My Pride India - premium travel theme */
:root{
  --bg:#f6f4ef;
  --surface:#ffffff;
  --surface-2:#fbfaf7;
  --text:#17212b;
  --muted:#5d6672;
  --navy:#0b1f3a;
  --navy-2:#12345a;
  --saffron:#f5b547;
  --green:#138808;
  --border:rgba(11,31,58,.12);
  --shadow:0 18px 45px rgba(11,31,58,.08);
  --radius:24px;
}

*{box-sizing:border-box}
html,body{height:100%}

body.site-body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(245,181,71,.12), transparent 30%),
    radial-gradient(circle at top right, rgba(19,136,8,.08), transparent 25%),
    var(--bg);
}

.site-main{flex:1}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{
  width:min(1180px, calc(100% - 32px));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(245,181,71,.55);
}

.site-header.is-scrolled{
  box-shadow:0 6px 24px rgba(11,31,58,.08);
}

.nav-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:14px;
  box-shadow:none;
  background:transparent;
}

.brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand-text strong{
  font-size:1.08rem;
  letter-spacing:.2px;
  color:var(--navy);
}

.brand-text small{
  display:block;
  color:var(--green);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  line-height:1.25;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
  max-width:460px;
}

.primary-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.primary-nav a{
  color:var(--navy);
  font-weight:600;
  padding:.78rem 1rem;
  border-radius:999px;
  transition:all .22s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active{
  background:rgba(245,181,71,.16);
  color:var(--navy);
  transform:translateY(-1px);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
  box-shadow:0 8px 24px rgba(11,31,58,.04);
  cursor:pointer;
}

.menu-toggle span{
  width:22px;
  height:2px;
  background:var(--navy);
  border-radius:10px;
  transition:.2s;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:center;
}

.hero-copy{
  padding:22px 0 0;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(245,181,71,.28);
  color:var(--navy);
  border-radius:999px;
  padding:.55rem .9rem;
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.02em;
  box-shadow:var(--shadow);
}

.kicker::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--saffron), #ff8e4b);
  box-shadow:0 0 0 6px rgba(245,181,71,.18);
}

.hero h1{
  margin:18px 0 14px;
  font-size:clamp(2.5rem, 4.8vw, 4.9rem);
  line-height:1.02;
  letter-spacing:-.04em;
  color:var(--navy);
}

.hero h1 span{color:var(--green)}

.hero p{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.8;
  max-width:62ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:.92rem 1.2rem;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  box-shadow:0 10px 24px rgba(11,31,58,.08);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(11,31,58,.12);
}

.btn.primary{background:var(--navy);color:#fff}
.btn.accent{background:linear-gradient(135deg, var(--saffron), #ff8b4c);color:#1b1b1b}
.btn.ghost{background:#fff;border-color:var(--border);color:var(--navy)}

.hero-art{
  position:relative;
  border-radius:32px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg, rgba(11,31,58,.03), rgba(11,31,58,.01));
  border:1px solid rgba(11,31,58,.08);
}

.hero-art img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-badge{
  position:absolute;
  left:18px;
  bottom:18px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.4);
  border-radius:18px;
  padding:14px 16px;
  box-shadow:0 15px 35px rgba(11,31,58,.12);
  max-width:260px;
}

.hero-badge strong{
  display:block;
  color:var(--navy);
  margin-bottom:4px;
}

.hero-badge span{
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}

.section{
  padding:30px 0 22px;
}

.section-title{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:end;
  margin-bottom:18px;
}

.section-title h2,
.section-title h1{
  margin:0;
  color:var(--navy);
  font-size:clamp(1.55rem, 2.8vw, 2.5rem);
  letter-spacing:-.03em;
}

.section-title p{
  margin:0;
  max-width:58ch;
  color:var(--muted);
  line-height:1.7;
}

.grid{
  display:grid;
  gap:18px;
}

.grid.destinations{grid-template-columns:repeat(3, 1fr)}
.grid.features{grid-template-columns:repeat(4, 1fr)}
.grid.books{grid-template-columns:1fr}
.grid.video{grid-template-columns:repeat(2, 1fr)}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.card.padded{padding:24px}

.dest-card{
  overflow:hidden;
  background:linear-gradient(180deg, #fff, #fbfaf6);
}

.dest-media{
  aspect-ratio:16/10;
  overflow:hidden;
  background:#f3f6f9;
}

.dest-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.dest-card:hover .dest-media img{transform:scale(1.04)}

.dest-body{padding:18px 18px 20px}

.dest-body h3,
.book-body h3,
.mini-card h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:1.14rem;
}

.dest-body p,
.book-body p,
.mini-card p,
.text{
  color:var(--muted);
  line-height:1.75;
  margin:0;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:.5rem .82rem;
  border-radius:999px;
  background:#f7f8fb;
  color:var(--navy);
  font-size:.85rem;
  font-weight:700;
  border:1px solid var(--border);
}

.feature{
  padding:22px;
  position:relative;
}

.feature .icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(245,181,71,.26), rgba(19,136,8,.12));
  display:grid;
  place-items:center;
  margin-bottom:14px;
  color:var(--navy);
  font-size:1.35rem;
}

.feature h3{
  margin:0 0 8px;
  color:var(--navy);
}

.stat-band{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.stat{
  background:linear-gradient(135deg, rgba(11,31,58,.95), rgba(18,52,90,.95));
  color:#fff;
  padding:20px;
  border-radius:24px;
  box-shadow:var(--shadow);
  min-height:140px;
}

.stat strong{
  display:block;
  font-size:2rem;
  line-height:1;
  margin-bottom:6px;
}

.stat span{
  color:rgba(255,255,255,.76);
  line-height:1.6;
}

.video-frame{
  position:relative;
  aspect-ratio:16/9;
  background:#000;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(11,31,58,.08);
}

.video-frame iframe{
  width:100%;
  height:100%;
  border:0;
}

.video-caption{
  padding:14px 4px 2px;
}

.video-caption h3{
  margin:0 0 6px;
  color:var(--navy);
}

.video-caption p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.book-hero{
  display:grid;
  grid-template-columns:.42fr .58fr;
  gap:24px;
  align-items:center;
}

.book-cover{
  padding:18px;
}

.book-cover img{
  border-radius:26px;
  box-shadow:0 24px 54px rgba(11,31,58,.16);
}

.list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.list li{
  padding-left:28px;
  position:relative;
  color:var(--muted);
  line-height:1.65;
}

.list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--saffron), var(--green));
}

.action-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

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

.field label{
  font-weight:700;
  color:var(--navy);
}

.field input,
.field textarea,
.field select{
  width:100%;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(11,31,58,.16);
  background:#fff;
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:rgba(245,181,71,.9);
  box-shadow:0 0 0 4px rgba(245,181,71,.18);
}

.field textarea{
  min-height:170px;
  resize:vertical;
}

.span-2{grid-column:span 2}

.notice{
  padding:16px 18px;
  border-radius:18px;
  margin-bottom:16px;
  border:1px solid;
}

.notice.success{
  background:#edf8ee;
  border-color:#bfe6c2;
  color:#14431a;
}

.notice.error{
  background:#fff0ef;
  border-color:#ffc8c3;
  color:#8a1f19;
}

.site-footer{
  margin-top:auto;
  background:linear-gradient(180deg, #0b1f3a, #08182d);
  color:#dce6f6;
}

.footer-grid{
  padding:28px 0 20px;
  display:grid;
  gap:22px;
  grid-template-columns:1.2fr .8fr .8fr;
}

.footer-logo{
  width:56px;
  height:56px;
  object-fit:contain;
  background:transparent;
  border-radius:14px;
  display:block;
}

.site-footer h4{
  margin:0 0 10px;
  color:#fff;
}

.site-footer a{color:#dce6f6}

.footer-copy,
.site-footer p{
  color:#b8c8df;
  line-height:1.7;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:16px 0 20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#9eb4d2;
  font-size:.95rem;
}

/* social media icons */
.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}

.social-row a{
  color:#dce6f6;
  font-weight:600;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin-top:8px;
}

.social-links a{
  color:#dce6f6;
  font-weight:600;
  white-space:nowrap;
}

.social-links a:hover{
  text-decoration:underline;
}

.social-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.social-badges a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#dce6f6;
  font-weight:600;
  line-height:1;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-badges a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
  text-decoration:none;
}

.social-badges i{
  font-size:1rem;
}

.page-hero{
  padding:48px 0 12px;
}

.page-hero .panel{
  background: url('../images/heroes.png') center/cover no-repeat;
  color: var(--navy);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(11,31,58,.08);
}

.page-hero .panel h1{
  color: var(--navy);
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero .panel p{
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
}

.mini-card{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:16px;
  align-items:center;
  padding:18px;
}

.mini-card img{
  border-radius:18px;
  aspect-ratio:1;
  object-fit:cover;
}

.note{
  padding:18px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(11,31,58,.08);
  box-shadow:var(--shadow);
}

.underline{
  width:92px;
  height:5px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--saffron), var(--green));
  margin:12px 0 0;
}

/* About page */
.about-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:start;
}

.about-card h2{
  margin:0 0 12px;
  color:var(--navy);
  font-size:clamp(1.5rem, 2.5vw, 2rem);
}

.about-media{
  padding:16px;
  overflow:hidden;
}

.about-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
  display:block;
}

.about-focus{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.about-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

/* Contact page */
.contact-grid{
  grid-template-columns: 1fr .8fr;
  gap:18px;
  align-items:stretch;
}

.contact-form-card,
.contact-side-card{
  height:100%;
  display:flex;
  flex-direction:column;
}

.contact-form-card .action-row{
  margin-top:18px;
}

.contact-note{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(11,31,58,.08);
  color:var(--muted);
  line-height:1.6;
  font-size:.95rem;
}

.contact-side-image{
  width:100%;
  /*aspect-ratio: 16 / 14;*/
  object-fit:cover;
  border-radius:22px;
  margin-bottom:18px;
  display:block;
}

#formMessage{
  margin-bottom:18px;
}

button:disabled{
  opacity:.75;
  cursor:not-allowed;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid,
  .book-hero,
  .footer-grid,
  .grid.destinations,
  .grid.features,
  .grid.video,
  .stat-band,
  .form-grid,
  .about-grid,
  .about-focus{
    grid-template-columns:1fr 1fr;
  }

  .hero{
    padding-top:46px;
  }

  .about-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .menu-toggle{display:flex}

  .primary-nav{
    position:absolute;
    left:16px;
    right:16px;
    top:84px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    background:#fff;
    border-radius:22px;
    box-shadow:var(--shadow);
    border:1px solid rgba(11,31,58,.08);
  }

  .primary-nav.open{display:flex}

  .primary-nav a{padding:1rem 1rem}

  .hero-grid,
  .book-hero,
  .footer-grid,
  .grid.destinations,
  .grid.features,
  .grid.video,
  .stat-band,
  .form-grid,
  .about-grid,
  .about-focus{
    grid-template-columns:1fr;
  }

  .span-2{grid-column:auto}

  .hero{
    padding-top:28px;
  }

  .hero h1{
    font-size:clamp(2.15rem, 12vw, 3.6rem);
  }

  .page-hero .panel{
    padding:26px;
  }

  .mini-card{
    grid-template-columns:1fr;
  }

  .brand-text small{
    display:none;
  }
}
