/* ================================
   Glow Way Travels Website Theme
   Dark Blue + White | Logo-inspired
================================ */

/* Logo color palette */
:root {
  --blue-dark: #073445;
  --blue-deep: #042634;
  --blue-soft: #0d5369;
  --blue-light: #14b8d5;
  --white: #ffffff;
  --off-white: #f6f8f9;
  --text: #102832;
  --muted: #62727a;
  --border: rgba(7, 52, 69, 0.14);
  --shadow: 0 24px 70px rgba(4, 38, 52, 0.16);
  --radius: 28px;
  --radius-sm: 16px;
  --container: 1180px;
}

/* Similar feel to the slab serif logo font.
   Exact logo font may need the original font file from the designer. */
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Inter:wght@400;500;600;700;800;900&family=Lobster+Two:wght@700&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 100px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.08;
}

h1,
h2,
.brand strong,
.footer-brand strong {
  font-family: "Bree Serif", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 7.5vw, 6.9rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 16px 0 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(255, 255, 255, 0.24);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.light-btn {
  background: var(--blue-dark);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(4, 38, 52, 0.10);
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.brand span,
.footer-brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 900;
}

.site-header.scrolled .brand strong,
.site-header.scrolled .brand small {
  color: var(--blue-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 0.94rem;
}

.site-header.scrolled .nav-links {
  color: var(--blue-dark);
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-btn)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -7px;
  background: var(--blue-light);
  transition: width 0.2s ease;
}

.nav-links a:not(.nav-btn):hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--white);
  color: var(--blue-dark);
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.13);
}

.site-header.scrolled .nav-btn {
  background: var(--blue-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  width: 23px;
  height: 2px;
  background: var(--white);
  display: block;
  margin: 5px auto;
}

.site-header.scrolled .nav-toggle {
  background: rgba(7, 52, 69, 0.08);
}

.site-header.scrolled .nav-toggle span {
  background: var(--blue-dark);
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 184, 213, 0.32), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.13), transparent 24%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 38, 52, 0.92), rgba(4, 38, 52, 0.74)),
    url("https://images.unsplash.com/photo-1586861635167-e5223aadc9fe?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -90px -10%;
  height: 230px;
  background: var(--white);
  transform: rotate(-3deg);
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 50px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero .eyebrow {
  color: #75e6f7;
}

.hero-text {
  max-width: 710px;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.82) !important;
}

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

.hero-highlights {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 170px));
  gap: 16px;
}

.hero-highlights div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.hero-highlights strong {
  display: block;
  color: var(--white);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.hero-logo-card {
  position: relative;
  padding: 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.96);
  border: 8px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.hero-logo-card::after {
  content: "Sri Lanka";
  position: absolute;
  right: -18px;
  top: 36px;
  padding: 10px 18px;
  background: var(--blue-light);
  color: var(--blue-deep);
  border-radius: 999px;
  font-weight: 900;
  transform: rotate(8deg);
}

.hero-logo-card img {
  width: 100%;
  object-fit: contain;
}

.hero-logo-card p {
  margin: 16px 0 0;
  text-align: center;
  color: var(--blue-dark);
  font-family: "Lobster Two", cursive;
  font-size: 1.35rem;
}

/* Quick plan */
.quick-plan {
  position: relative;
  z-index: 3;
  margin-top: -58px;
}

.plan-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.input-box {
  display: grid;
  gap: 8px;
}

label {
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(20, 184, 213, 0.16);
}

.plan-card .btn,
.contact-form .btn {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(7, 52, 69, 0.24);
}

/* About */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 70px;
  align-items: center;
}

.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.about-image,
.sustainability-image {
  position: relative;
}

.about-image img,
.sustainability-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  left: -24px;
  bottom: 34px;
  width: min(290px, calc(100% - 30px));
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-badge span {
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  font-size: 0.72rem;
}

.floating-badge strong {
  display: block;
  margin-top: 6px;
  color: var(--blue-dark);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.1;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list span {
  position: relative;
  padding: 14px 16px 14px 48px;
  background: #f0fbfe;
  color: var(--blue-dark);
  border: 1px solid rgba(20, 184, 213, 0.16);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.check-list span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
}

/* Section title */
.section-title {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-title.light h2,
.section-title.light p {
  color: var(--white);
}

/* Experiences */
.experiences {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 213, 0.16), transparent 25%),
    var(--off-white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(4, 38, 52, 0.08);
  border: 1px solid rgba(7, 52, 69, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.experience-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.experience-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.experience-card div {
  padding: 24px;
}

.experience-card small,
.blog-grid small {
  display: inline-block;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 10px;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.package-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(4, 38, 52, 0.08);
}

.package-card.featured {
  transform: translateY(-18px);
  border-color: rgba(20, 184, 213, 0.44);
  box-shadow: var(--shadow);
}

.package-media {
  min-height: 255px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.package-media span {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--white);
  color: var(--blue-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.pkg-1 {
  background-image: url("https://images.unsplash.com/photo-1566296314736-6eaac1ca0cb9?auto=format&fit=crop&w=900&q=85");
}

.pkg-2 {
  background-image: url("https://images.unsplash.com/photo-1578922746465-3a80a228f223?auto=format&fit=crop&w=900&q=85");
}

.pkg-3 {
  background-image: url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=900&q=85");
}

.package-body {
  padding: 26px;
}

.package-body ul {
  color: var(--muted);
  padding-left: 20px;
  margin: 18px 0;
}

.package-body a {
  color: var(--blue-soft);
  font-weight: 900;
}

/* Expertise */
.expertise {
  padding: 100px 0;
  background:
    linear-gradient(rgba(4, 38, 52, 0.92), rgba(4, 38, 52, 0.92)),
    url("https://images.unsplash.com/photo-1546708973-b339540b5162?auto=format&fit=crop&w=1800&q=85") center / cover fixed;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.expertise-grid div {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.expertise-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--blue-dark);
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.expertise-grid h3,
.expertise-grid p {
  color: var(--white);
}

.expertise-grid p {
  opacity: 0.78;
}

/* Sustainability */
.sustainability {
  background: var(--white);
}

.policy-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.policy-grid div {
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* Reviews */
.reviews {
  background: var(--off-white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-grid article {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(7, 52, 69, 0.08);
  box-shadow: 0 14px 45px rgba(4, 38, 52, 0.06);
}

.review-grid p {
  color: var(--text);
  font-size: 1.04rem;
}

.review-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--blue-dark);
}

.review-grid span {
  color: var(--muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 16px 45px rgba(4, 38, 52, 0.06);
}

.blog-grid img {
  height: 225px;
  width: 100%;
  object-fit: cover;
}

.blog-grid div {
  padding: 24px;
}

.blog-grid a {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue-soft);
  font-weight: 900;
}

/* FAQ */
.faq {
  background:
    radial-gradient(circle at top right, rgba(20, 184, 213, 0.14), transparent 25%),
    var(--off-white);
}

.faq-list {
  max-width: 870px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(4, 38, 52, 0.04);
}

summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

details p {
  margin-bottom: 0;
}

/* CTA */
.cta {
  padding: 76px 0;
  background:
    radial-gradient(circle at right, rgba(20, 184, 213, 0.26), transparent 24%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-deep));
}

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

.cta h2,
.cta p {
  color: var(--white);
}

.cta p {
  opacity: 0.8;
}

/* Contact */
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards span {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.contact-form .input-box {
  margin-bottom: 16px;
}

.form-note {
  font-size: 0.86rem;
}

/* Footer */
.footer {
  padding: 72px 0 28px;
  background: var(--blue-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.85fr;
  gap: 40px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 5px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.28rem;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer a {
  display: block;
  margin-top: 9px;
}

.footer a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 330px;
  }

  .experience-grid,
  .package-grid,
  .review-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    color: var(--blue-dark);
    padding: 14px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-btn {
    background: var(--blue-dark);
    color: var(--white);
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card {
    max-width: 360px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .hero {
    padding-top: 40px;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 1.14rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 130px;
    padding-bottom: 115px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .plan-card,
  .experience-grid,
  .package-grid,
  .expertise-grid,
  .review-grid,
  .blog-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .sustainability-image img {
    height: 400px;
    border-radius: 28px;
  }

  .floating-badge {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
