/*
Theme Name: Shrimangal Astra Child
Theme URI: https://shrimangaltoursandtravels.com/
Description: Astra child theme for Shrimangal Tours and Travels with a custom business homepage.
Author: Prasad Wadkar & Codex
Template: astra
Version: 1.0.0
Text Domain: shrimangal-astra-child
*/

:root {
  --smt-primary: #0d3b66;
  --smt-primary-deep: #08253f;
  --smt-accent: #f4a424;
  --smt-accent-soft: #ffd27a;
  --smt-surface: #f7f8fb;
  --smt-surface-strong: #ffffff;
  --smt-text: #14213d;
  --smt-text-soft: #54627c;
  --smt-border: rgba(13, 59, 102, 0.12);
  --smt-shadow: 0 22px 60px rgba(10, 37, 64, 0.15);
  --smt-radius-xl: 30px;
  --smt-radius-lg: 22px;
  --smt-radius-md: 16px;
  --smt-radius-sm: 12px;
  --smt-container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body.shrimangal-front-page {
  margin: 0;
  color: var(--smt-text);
  background:
    radial-gradient(circle at top left, rgba(255, 210, 122, 0.34), transparent 30%),
    radial-gradient(circle at top right, rgba(13, 59, 102, 0.18), transparent 28%),
    linear-gradient(180deg, #f6f9fc 0%, #eef4f8 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.shrimangal-front-page * {
  box-sizing: border-box;
}

.smt-shell {
  min-height: 100vh;
}

.smt-container {
  width: min(var(--smt-container), calc(100% - 32px));
  margin: 0 auto;
}

.smt-topbar {
  background: var(--smt-primary-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.smt-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.smt-topbar__contact,
.smt-topbar__quick {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.smt-topbar a {
  color: inherit;
  text-decoration: none;
}

.smt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}

.smt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}

.smt-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--smt-primary-deep);
  text-decoration: none;
  min-width: 0;
}

.smt-brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--smt-primary) 0%, #1c6aa7 100%);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(13, 59, 102, 0.22);
}

.smt-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.smt-brand__text strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
}

.smt-brand__text span {
  color: var(--smt-text-soft);
  font-size: 13px;
}

.smt-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.smt-nav a {
  color: var(--smt-text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.smt-nav a:hover {
  background: rgba(13, 59, 102, 0.08);
  color: var(--smt-primary);
}

.smt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.smt-btn--primary {
  background: linear-gradient(135deg, var(--smt-accent) 0%, #ffb703 100%);
  color: #102032;
  box-shadow: 0 16px 34px rgba(244, 164, 36, 0.32);
}

.smt-btn--secondary {
  background: var(--smt-primary);
  color: #fff;
  box-shadow: 0 18px 34px rgba(13, 59, 102, 0.24);
}

.smt-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.smt-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 37, 63, 0.88) 0%, rgba(8, 37, 63, 0.66) 42%, rgba(8, 37, 63, 0.82) 100%),
    var(--smt-hero-image, linear-gradient(135deg, #173f6d 0%, #08253f 100%));
  background-size: cover;
  background-position: center;
}

.smt-hero::before,
.smt-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.45;
}

.smt-hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(244, 164, 36, 0.55), transparent 68%);
  top: -110px;
  right: -40px;
}

.smt-hero::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
  bottom: -90px;
  left: -50px;
}

.smt-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: 104px 0 84px;
}

.smt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.smt-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.smt-hero p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.smt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.smt-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.smt-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--smt-radius-md);
  padding: 18px 16px;
  backdrop-filter: blur(8px);
}

.smt-stat strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.smt-stat span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.smt-hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--smt-shadow);
  border-radius: var(--smt-radius-xl);
  padding: 28px;
  backdrop-filter: blur(14px);
}

.smt-hero-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.smt-hero-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

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

.smt-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 15px;
}

.smt-highlight-list li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 164, 36, 0.22);
  color: #fff2cf;
  font-weight: 800;
  flex: 0 0 auto;
}

.smt-section {
  padding: 86px 0;
}

.smt-section--tight {
  padding-top: 0;
}

.smt-section__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.smt-section__eyebrow {
  color: var(--smt-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.smt-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: var(--smt-primary-deep);
}

.smt-section__lead {
  max-width: 620px;
  color: var(--smt-text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.smt-grid {
  display: grid;
  gap: 22px;
}

.smt-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smt-grid--packages {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smt-grid--testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smt-card {
  background: var(--smt-surface-strong);
  border: 1px solid var(--smt-border);
  border-radius: var(--smt-radius-lg);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(16, 32, 50, 0.06);
}

.smt-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--smt-primary-deep);
}

.smt-card p {
  margin: 0;
  color: var(--smt-text-soft);
  line-height: 1.7;
}

.smt-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 59, 102, 0.08);
  color: var(--smt-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.smt-why {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
}

.smt-why-panel {
  background: linear-gradient(145deg, #0d3b66 0%, #113d5f 100%);
  color: #fff;
  border-radius: var(--smt-radius-xl);
  padding: 34px;
  box-shadow: var(--smt-shadow);
}

.smt-why-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.smt-why-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.smt-why-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--smt-radius-md);
  padding: 18px;
}

.smt-why-list strong {
  display: block;
  margin-bottom: 6px;
}

.smt-side-stack {
  display: grid;
  gap: 20px;
}

.smt-side-card {
  border-radius: var(--smt-radius-lg);
  background: var(--smt-surface-strong);
  border: 1px solid var(--smt-border);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(16, 32, 50, 0.06);
}

.smt-side-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.smt-side-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--smt-text-soft);
}

.smt-side-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--smt-accent);
  flex: 0 0 auto;
}

.smt-package-card {
  position: relative;
  overflow: hidden;
}

.smt-package-card__price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 164, 36, 0.12);
  color: #8b5b00;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.smt-package-card ul {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.smt-package-card li {
  color: var(--smt-text-soft);
  display: flex;
  gap: 10px;
}

.smt-package-card li::before {
  content: "•";
  color: var(--smt-accent);
  font-size: 20px;
  line-height: 1;
}

.smt-package-card__cta {
  color: var(--smt-primary);
  font-weight: 700;
  text-decoration: none;
}

.smt-cabs {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}

.smt-cabs__panel {
  background: var(--smt-surface-strong);
  border: 1px solid var(--smt-border);
  border-radius: var(--smt-radius-xl);
  padding: 34px;
  box-shadow: 0 12px 28px rgba(16, 32, 50, 0.06);
}

.smt-cabs__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.smt-mini-feature {
  padding: 18px;
  border-radius: var(--smt-radius-md);
  background: var(--smt-surface);
  border: 1px solid var(--smt-border);
}

.smt-mini-feature strong {
  display: block;
  margin-bottom: 6px;
}

.smt-testimonial {
  height: 100%;
}

.smt-stars {
  letter-spacing: 0.1em;
  color: var(--smt-accent);
  font-size: 14px;
  margin-bottom: 14px;
}

.smt-testimonial blockquote {
  margin: 0;
  color: var(--smt-text-soft);
  line-height: 1.8;
}

.smt-testimonial footer {
  margin-top: 18px;
  color: var(--smt-primary-deep);
  font-weight: 700;
}

.smt-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.smt-contact-card,
.smt-form-card {
  background: var(--smt-surface-strong);
  border: 1px solid var(--smt-border);
  border-radius: var(--smt-radius-xl);
  padding: 34px;
  box-shadow: 0 12px 28px rgba(16, 32, 50, 0.06);
}

.smt-contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.smt-contact-list li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--smt-primary-deep);
}

.smt-contact-list li span,
.smt-contact-list li a {
  color: var(--smt-text-soft);
  text-decoration: none;
}

.smt-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.smt-simple-form {
  display: grid;
  gap: 14px;
}

.smt-simple-form .wp-block-button__link,
.smt-simple-form button,
.smt-simple-form input,
.smt-simple-form textarea {
  width: 100%;
}

.smt-simple-form input,
.smt-simple-form textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(13, 59, 102, 0.14);
  background: #fbfcfe;
  color: var(--smt-text);
  font: inherit;
}

.smt-simple-form input:focus,
.smt-simple-form textarea:focus {
  outline: 2px solid rgba(13, 59, 102, 0.14);
  border-color: var(--smt-primary);
}

.smt-simple-form button {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.smt-cta-strip {
  margin: 0 auto 84px;
  width: min(var(--smt-container), calc(100% - 32px));
  padding: 30px 34px;
  border-radius: var(--smt-radius-xl);
  background: linear-gradient(135deg, var(--smt-primary-deep) 0%, var(--smt-primary) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--smt-shadow);
}

.smt-cta-strip h3 {
  margin: 0 0 6px;
  font-size: clamp(28px, 4vw, 40px);
}

.smt-cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.smt-footer {
  background: #091a2b;
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 0 24px;
}

.smt-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
}

.smt-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.smt-footer p,
.smt-footer li,
.smt-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  line-height: 1.8;
}

.smt-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.smt-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.smt-floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 18px 28px rgba(37, 211, 102, 0.3);
}

.smt-floating-wa:hover {
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .smt-hero__inner,
  .smt-why,
  .smt-cabs,
  .smt-contact,
  .smt-footer__grid {
    grid-template-columns: 1fr;
  }

  .smt-grid--services,
  .smt-grid--packages,
  .smt-grid--testimonials,
  .smt-hero__stats,
  .smt-cabs__features,
  .smt-why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .smt-header {
    position: static;
  }

  .smt-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .smt-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .smt-nav a {
    padding-left: 0;
    padding-right: 0;
  }

  .smt-hero__inner {
    padding: 76px 0 64px;
  }

  .smt-grid--services,
  .smt-grid--packages,
  .smt-grid--testimonials,
  .smt-hero__stats,
  .smt-cabs__features,
  .smt-why-list {
    grid-template-columns: 1fr;
  }

  .smt-section {
    padding: 68px 0;
  }

  .smt-card,
  .smt-contact-card,
  .smt-form-card,
  .smt-cabs__panel,
  .smt-side-card,
  .smt-hero-card,
  .smt-why-panel {
    padding: 24px;
  }

  .smt-cta-strip {
    padding: 24px;
    margin-bottom: 62px;
  }
}
