/* =========================================================
   Growable Digital Solutions — Landing Page Styles
   Colors taken from the brand logo:
   Navy   : #0d1259  (headings, top bar, footer)
   Orange : #f2a341  (logo accent / arrow)
   Amber  : #b9791f  (CTA buttons)
   Cream  : #fdf3e4  (alternate section background)
========================================================= */

:root {
  --navy: #0d1259;
  --navy-dark: #0a0e2e;
  --orange: #f2a341;
  --amber: #b9791f;
  --amber-dark: #935f14;
  --cream: #fdf3e4;
  --cream-deep: #f8e9d1;
  --text-dark: #17162b;
  --text-muted: #55536b;
  --white: #ffffff;
  --border-radius: 10px;
  --shadow-soft: 0 8px 24px rgba(13, 18, 89, 0.08);
  --shadow-lift: 0 16px 40px rgba(185, 121, 31, 0.28);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Sticky Mini Nav ---------- */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(13, 18, 89, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sticky-nav.show {
  transform: translateY(0);
}

.sticky-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.sticky-logo {
  width: auto;
  height: auto;
  max-width: 130px;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  text-align: center;
  padding: 14px 16px;
}

.top-bar p {
  color: var(--white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 32px 0 50px;
  background: radial-gradient(ellipse at top, #fff9f0 0%, var(--white) 55%);
}

.logo {
  width: auto;
  height: auto;
  max-width: 190px;
  margin: 0 auto 14px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  max-width: 950px;
  margin: 0 auto 26px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-desc {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  margin-bottom: 42px;
  font-size: 0.98rem;
  font-weight: 600;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid var(--cream-deep);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--amber), #d99633);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 20px 42px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lift);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta:hover {
  background: linear-gradient(120deg, var(--amber-dark), var(--amber));
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(185, 121, 31, 0.36);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-cta:hover .btn-arrow {
  transform: translateX(4px);
}

.cta-microcopy {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image-wrap {
  margin-top: 56px;
}

.hero-image {
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

/* ---------- Case Studies ---------- */
.case-study {
  padding: 70px 0;
  background: var(--white);
}

.case-study.cs-alt {
  background: var(--cream);
}

.case-header-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: end;
  margin: 20px 0 40px;
}

.case-header-grid h2 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
}

.case-header-grid > p {
  font-size: 1.08rem;
  color: var(--text-muted);
  padding-bottom: 4px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.case-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.case-image-col .btn-cta {
  align-self: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--amber-dark);
  background: rgba(185, 121, 31, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
}

.case-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
}

.check-list {
  margin-bottom: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.impact-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 2px solid rgba(185, 121, 31, 0.15);
}

.impact-list li {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.case-image img {
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(13, 18, 89, 0.14);
}

.cta-center {
  text-align: center;
  margin-top: 54px;
}

/* ---------- Why Choose Us ---------- */
.why-choose {
  background: linear-gradient(180deg, var(--cream), var(--cream-deep));
  padding: 84px 0;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.why-desc {
  max-width: 760px;
  margin: 0 auto 44px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 50px;
  text-align: left;
}

.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex: 1 1 300px;
  max-width: 330px;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 18, 89, 0.12);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.why-card p {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.6;
}



/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 28px 16px;
}

.site-footer p {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- Scroll Reveal ---------- */
.fade-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-init.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Thank You Page ---------- */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at top, #fff9f0 0%, var(--white) 55%);
  padding: 60px 0;
}

.thankyou-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.thankyou-inner .logo {
  width: auto;
  height: auto;
  max-width: 170px;
  margin: 0 auto 30px;
}

.thankyou-image {
  width: auto;
  height: auto;
  max-width: 220px;
  margin: 0 auto 20px;
  border-radius: 12px;
}

.thankyou-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  box-shadow: var(--shadow-lift);
}

.thankyou-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.thankyou-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.btn-whatsapp {
  background: linear-gradient(120deg, #25d366, #1fb855);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
  background: linear-gradient(120deg, #1fb855, #189a47);
  box-shadow: 0 20px 46px rgba(37, 211, 102, 0.4);
}

.back-home-link {
  display: block;
  margin-top: 28px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.back-home-link:hover {
  color: var(--amber-dark);
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 40px;
  text-align: left;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream-deep);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(185, 121, 31, 0.15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

/* ---------- Contact Form Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 18, 89, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

body.modal-open {
  overflow: hidden;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(13, 18, 89, 0.35);
  padding: 32px 32px 28px;
  text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-box .eyebrow {
  margin-bottom: 10px;
}

.modal-box .booking-title {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 20px;
}

.modal-box .form-group {
  margin-bottom: 14px;
}

.modal-box .form-row {
  gap: 14px;
}

.modal-box .form-group label {
  margin-bottom: 6px;
  font-size: 0.9rem;
  text-align: left;
}

.modal-box .form-group input {
  padding: 12px 14px;
}

.modal-box .btn-submit {
  padding: 16px 30px;
  font-size: 1.1rem;
  margin-top: 6px;
}

.modal-overlay.show .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: var(--cream-deep);
  transform: rotate(90deg);
}

.modal-box .contact-form {
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  max-width: none;
}

/* ---------- Booking Section ---------- */
.booking-section {
  background: linear-gradient(180deg, var(--white), var(--cream));
  padding: 80px 0;
  text-align: center;
}

.booking-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 18px 0 14px;
}

.booking-desc {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.booking-embed-wrap {
  max-width: 900px;
  margin: 0 auto;
  min-height: 650px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.1rem;
  }

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

  .case-header-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .case-image-col {
    order: -1;
  }

  .top-bar p {
    font-size: 1.15rem;
  }

  .why-choose h2 {
    font-size: 2rem;
  }

  .why-card {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .sticky-logo {
    max-width: 100px;
  }

  .booking-embed-wrap {
    min-height: 520px;
  }

  .booking-title {
    font-size: 1.9rem;
  }

  .booking-desc {
    font-size: 1rem;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 500px) {
  .btn-cta {
    padding: 16px 28px;
    font-size: 1.05rem;
  }

  .feature-list {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .modal-box {
    padding: 32px 22px;
  }

  .booking-title {
    font-size: 1.6rem;
  }

  .booking-section {
    padding: 50px 0;
  }

  .booking-section .logo {
    max-width: 140px;
  }
}
