/* ═══════════════════════════════════════════
   SeeMyTrip Corporate — Global Stylesheet
   Brand: Red #CC0000 | Green #1E7A1E | White
═══════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --red: #cc0000;
  --red-dark: #a30000;
  --red-light: #e60000;
  --green: #1e7a1e;
  --green-dark: #155715;
  --white: #ffffff;
  --off-white: #faf8f6;
  --cream: #f4f0eb;
  --dark: #1a1a1a;
  --dark-mid: #2d2d2d;
  --mid: #5a5a5a;
  --light: #9a9a9a;
  --border: #e8e2da;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);
  --radius: 6px;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: "Playfair Display", serif;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}
h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
}
h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
}
h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}
p {
  line-height: 1.8;
  font-weight: 300;
  color: var(--mid);
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
section {
  padding: 96px 0;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-tag.green {
  color: var(--green);
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.section-divider.green {
  background: var(--green);
}
.section-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: "Outfit", sans-serif;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.3);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 122, 30, 0.3);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn svg {
  width: 16px;
  height: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark-mid);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: rgba(204, 0, 0, 0.05);
}
.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-item:hover > .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--dark-mid);
  transition: all 0.15s;
}
.nav-dropdown a:hover {
  background: rgba(204, 0, 0, 0.06);
  color: var(--red);
  padding-left: 18px;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-platform-btn {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-platform-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(204, 0, 0, 0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 24px 48px;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open {
  display: flex;
}
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}
.drawer-link:hover,
.drawer-link.active {
  color: var(--red);
  background: rgba(204, 0, 0, 0.04);
}
.drawer-sub {
  padding-left: 16px;
  display: none;
}
.drawer-sub.open {
  display: block;
}
.drawer-sub a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.drawer-sub a:hover {
  color: var(--red);
}
.drawer-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  padding: 20px 16px 8px;
}
.drawer-cta-wrap {
  padding: 20px 0 0;
}

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  margin-top: var(--nav-h);
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #2a0000 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 26, 26, 0.92) 40%,
    rgba(204, 0, 0, 0.3) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}
.page-hero-content .section-tag {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 58px);
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  font-size: 17px;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a,
.breadcrumb span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #111;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand {
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 300px;
  font-weight: 300;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.footer-badge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.7;
  font-weight: 300;
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════
   CARDS
══════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card-img {
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-img img {
  transform: scale(1.04);
}
.card-body {
  padding: 28px;
}
.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.card-tag.green {
  color: var(--green);
}
.card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  line-height: 1.75;
}

/* Credential badge */
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--green);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.07em;
  background: rgba(30, 122, 30, 0.05);
}
.cred-pill.red {
  border-color: var(--red);
  color: var(--red);
  background: rgba(204, 0, 0, 0.05);
}

/* ══════════════════════════════════
   UTILITY
══════════════════════════════════ */
.text-red {
  color: var(--red);
}
.text-green {
  color: var(--green);
}
.text-white {
  color: var(--white);
}
.text-mid {
  color: var(--mid);
}
.bg-dark {
  background: var(--dark);
}
.bg-red {
  background: var(--red);
}
.bg-cream {
  background: var(--cream);
}
.bg-white {
  background: var(--white);
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .container,
  .container-wide {
    padding: 0 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }
  section {
    padding: 64px 0;
  }
  .nav-menu,
  .nav-actions {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .container,
  .container-wide {
    padding: 0 20px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
  h2 {
    font-size: clamp(22px, 6vw, 32px);
  }
  .page-hero {
    min-height: 280px;
  }
  .page-hero-content {
    padding: 48px 0;
  }
}
@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }
  section {
    padding: 48px 0;
  }
}
