/* ============================
   CSS RESET & BASE STYLES
============================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f7f1eb;
}

body {
  color: #223A57;
  background: #F7F1EB;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
}

:root {
  --primary: #223A57;
  --secondary: #D3B25F;
  --accent: #F7F1EB;
  --fun-pink: #F954A4;
  --fun-blue: #54C4F9;
  --fun-lime: #c7ff4f;
  --fun-purple: #b666ff;
  --fun-yellow: #ffe173;
  --shadow-1: 0 4px 16px 0 rgba(34,58,87,0.10);
  --shadow-2: 0 8px 24px 0 rgba(34,58,87,0.18);
  --radius-lg: 36px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Lato:wght@400;700&display=swap');

/* ============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.3rem;
  color: var(--fun-blue);
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(34,58,87,0.16);
}
h2 {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  color: var(--fun-pink);
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  color: var(--fun-purple);
  margin-bottom: 8px;
}
p,li {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
}
strong {
  color: var(--secondary);
  font-weight: bold;
}
.subheadline {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.12rem;
  color: var(--fun-pink);
  margin-bottom: 16px;
}
a {
  color: var(--fun-blue);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--fun-pink);
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* ============================
   UTILITY CLASSES
============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper, .content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  padding: 30px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  transition: transform 0.19s, box-shadow 0.19s;
  padding: 24px;
  min-width: 240px;
  flex: 1 1 220px;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: var(--shadow-2);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #222e3f;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  min-width: 260px;
  position: relative;
  flex: 1 1 270px;
  {
    /* Decorative pseudo-element animating star bounce - see below */
  }
}
.testimonial-card::before {
  content: "\2605";
  font-size: 1.6rem;
  color: var(--fun-yellow);
  position: absolute;
  top: -14px;
  left: 24px;
  opacity: 0.18;
  animation: bounce-star 3s infinite linear alternate;
}
@keyframes bounce-star {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.18; }
  40% { transform: translateY(-6px) scale(1.16) rotate(-9deg); opacity: 0.28; }
  80% { transform: translateY(0) scale(1.07) rotate(7deg); opacity: 0.22; }
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.star-rating {
  color: var(--fun-yellow);
  font-size: 1.2em;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============================
   HEADER & NAVIGATION
============================== */
header {
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(34,58,87,0.06);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo img {
  max-height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 9px rgba(213,178,95,0.08));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  border-radius: 3px;
  background: var(--fun-pink);
  transition: width 0.23s cubic-bezier(.55,1.56,.73,.85);
  margin: 0 auto 0 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--fun-pink);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 75%;
}
.main-nav .cta-nav {
  background: var(--fun-pink);
  color: #fff;
  padding: 7px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  margin-left: 14px;
  letter-spacing: 0.05em;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  font-size: 1.07rem;
}
.main-nav .cta-nav:hover, .main-nav .cta-nav:focus {
  background: var(--fun-blue);
  color: var(--primary);
  transform: scale(1.07) rotate(2deg);
}

.mobile-menu-toggle {
  display: none;
  background: var(--fun-blue);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 36px;
  padding: 7px 18px;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background 0.2s, transform 0.2s;
  margin-left: 10px;
  z-index: 61;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--fun-pink);
  transform: scale(1.11);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 32px 0 rgba(85,10,90,0.18);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.45,0.38,0.68,0.94);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 18px 18px 30px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--fun-pink);
  font-size: 2.1rem;
  cursor: pointer;
  margin-bottom: 18px;
  transition: color 0.2s, transform 0.18s;
  z-index: 1003;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--fun-blue);
  transform: rotate(14deg) scale(1.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.16rem;
  color: var(--primary);
  padding: 12px 0 12px 12px;
  border-radius: 14px;
  transition: background 0.17s, color 0.18s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--fun-blue);
}

/* Hide main-nav on mobile */
@media (max-width: 920px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 921px) {
  .mobile-menu {
    display: none;
  }
}

/* ============================
   HERO/CTA + FEATURES SECTIONS
============================== */
.hero {
  background:
    linear-gradient(95deg, #eaf9fc 0%, #f7f1eb 100%);
  padding: 54px 0 42px;
  text-align: left;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  justify-content: center;
}
.hero .cta-button {
  margin-top: 18px;
}

.features {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin: 40px 0 36px;
}
.features .content-wrapper {
  gap: 34px;
}
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  /* Allow columns to stack on mobile */
  justify-content: space-between;
}
.feature {
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 26px 20px 22px;
  flex: 1 1 212px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
  border: 2px solid transparent;
  transition: border 0.22s, transform 0.19s;
  position: relative;
  margin-bottom: 20px;
}
.feature:hover, .feature:focus-within {
  border: 2px solid var(--fun-yellow);
  transform: scale(1.04) rotate(-2deg);
}
.feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 4px;
  animation: floaty 4s linear infinite alternate;
}
@keyframes floaty {
  0% { transform: translateY(0) rotate(-3deg); }
  80% { transform: translateY(-8px) rotate(8deg); }
  100% { transform: translateY(0) rotate(4deg); }
}

/* ============================
   CTA BUTTONS & INTERACTIONS
============================== */
.cta-button {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  background: linear-gradient(92deg, var(--fun-pink) 65%, var(--fun-yellow));
  color: #fff;
  font-size: 1.18rem;
  border-radius: 22px;
  padding: 12px 38px;
  margin-top: 6px;
  border: none;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition: background 0.17s, color 0.19s, transform 0.16s, box-shadow 0.22s;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  z-index: 1;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(85deg, var(--fun-blue) 60%, var(--fun-yellow));
  color: var(--primary);
  transform: scale(1.05) rotate(-1deg);
  box-shadow: var(--shadow-2);
}

/* ============================
   SERVICES & FAQ
============================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 0 0;
  padding: 0px;
}
.quick-links {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--fun-pink);
  font-family: 'Cinzel', serif;
}
.quick-links a {
  color: var(--fun-blue);
  margin: 0 10px;
}
.cta-panel {
  background: #fffbe0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  margin: 30px 0 34px;
}
.cta-panel .container {
  padding: 26px 0;
}
.faq-shortlist, .faq {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  margin-top: 18px;
  box-shadow: var(--shadow-1);
  color: var(--primary);
}
.faq-shortlist ul, .faq ul {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.faq-shortlist li strong, .faq li strong {
  color: var(--fun-blue);
}

/* ============================
   TESTIMONIALS
============================== */
.testimonials {
  background: #fafdff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 44px 0 24px;
  margin-bottom: 44px;
}
.testimonials .content-wrapper {
  flex-wrap: wrap;
  gap: 22px;
  flex-direction: row;
}
.testimonial-card {
  background: #fff;
  color: #111933;
  border-left: 7px solid var(--fun-pink);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-md);
  min-width: 270px;
  max-width: 380px;
}
.testimonial-card p {
  font-size: 1.07rem;
  line-height: 1.55;
  margin-bottom: 12px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--primary);
}

/* ============================
   NEWSLETTER SIGNUP PANEL
============================== */
.newsletter-signup {
  background: #fff6ff;
  border-radius: var(--radius-lg);
  box-shadow: 0 7px 30px rgba(239,99,186,0.07);
  padding: 26px 20px;
  margin-top: 16px;
  text-align: center;
  color: var(--primary);
  font-size: 1rem;
  max-width: 370px;
}
.newsletter-signup h3,
.newsletter-signup h2 {
  color: var(--fun-pink);
  margin-bottom: 8px;
}

/* ============================
   FOOTER
============================== */
footer {
  padding: 0;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -4px 18px rgba(34,58,87,0.07);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0 16px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-menu a {
  font-size: 0.99rem;
  color: var(--primary);
  font-family: 'Lato', Arial, sans-serif;
  padding: 4px 10px;
  border-radius: 10px;
  background: none;
  transition: background 0.17s, color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--fun-yellow);
  color: var(--fun-pink);
}
footer .logo {
  margin-bottom: 18px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info img {
  margin-right: 8px;
  vertical-align: middle;
  width: 18px; height: 18px; display: inline-block;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 8px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--shadow-1);
  transition: transform 0.18s;
}
.social-links a:hover img {
  transform: scale(1.13) rotate(-7deg);
  background: var(--fun-pink);
}
.footer-bottom {
  padding: 16px 0 10px;
  font-size: 0.97rem;
  text-align: center;
  color: #6c84a6;
}

/* =============================
   MISC/LAYOUTS/CARDS/GUIDES
============================== */
.founder-bio, .team-profiles, .accreditations, .contact-location, .calendar, .guides {
  margin-bottom: 28px;
}
.founder-bio, .team-profiles, .accreditations, .newsletter-signup, .guides {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 19px 18px 11px;
  margin: 0 0 18px 0;
}
.map-placeholder, .team-photo-placeholder {
  width: 100%;
  min-height: 120px;
  background: var(--fun-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.team-photo-placeholder img, .map-placeholder img {
  width: 64px;
  height: 64px;
}
.auspicious-days-highlights {
  margin-top: 18px;
  background: #fff3d8;
  border-radius: var(--radius-sm);
  padding: 12px 12px 14px;
  box-shadow: var(--shadow-1);
}
.event-calendar {
  margin-top: 14px;
  padding: 11px 8px;
  background: #f7f1eb;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--primary);
  box-shadow: var(--shadow-1);
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #fffbe0;
  color: #223A57;
  box-shadow: 0 -2px 12px rgba(213,178,95,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 24px 12px;
  gap: 24px;
  font-size: 1.05rem;
  border-top: 3px solid var(--fun-yellow);
  animation: slideUpBanner 0.6s cubic-bezier(.51,1.3,.44,1.01);
}
@keyframes slideUpBanner {
  from { transform: translateY(101%); opacity: 0.4; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.cookie-btn {
  padding: 7px 20px;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  background: var(--fun-blue);
  cursor: pointer;
  margin-right: 0;
  transition: background 0.2s, color 0.17s, transform 0.15s;
}
.cookie-btn.reject {
  background: var(--fun-pink);
}
.cookie-btn.settings {
  background: var(--fun-yellow);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--fun-purple);
  color: #fff;
  transform: scale(1.07);
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 3000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,58,87,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.34s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 22px 28px;
  max-width: 420px;
  width: 92vw;
  box-shadow: var(--shadow-2);
  z-index: 3100;
  position: relative;
  animation: slideUpModal 0.37s cubic-bezier(.51,1.2,.53,1.01);
}
@keyframes slideUpModal {
  from { transform: translateY(65px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 13px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
  font-size: 1.05rem;
}
.cookie-modal label {
  font-weight: bold;
  color: var(--fun-blue);
}
.cookie-switch {
  width: 48px;
  height: 26px;
  background: #e6eaff;
  border-radius: 26px;
  position: relative;
  display: inline-block;
}
.cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-slider {
  position: absolute;
  top: 3px; left: 4px;
  width: 20px;
  height: 20px;
  background: var(--fun-blue);
  border-radius: 50%;
  transition: left 0.20s, background 0.17s;
}
.cookie-switch input:checked + .cookie-slider {
  left: 24px;
  background: var(--fun-pink);
}
.cookie-switch.essential {
  cursor: not-allowed;
  opacity: 0.54;
}
.cookie-modal .modal-actions {
  margin-top: 16px;
  text-align: right;
}
.cookie-modal .modal-actions button {
  margin-left: 10px;
}

/* Hide banner/modal (mix with visibility/js) */
.cookie-banner.hidden, .cookie-modal-backdrop.hidden {
  display: none;
}

/* =============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 1150px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 880px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .newsletter-signup {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 12px;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid,.service-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 8px;
  }
  .hero {
    padding: 28px 0 22px;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
  .features {
    margin: 22px 0 14px;
    padding: 9px 0 2px;
  }
  .features .content-wrapper {
    gap: 16px;
  }
  .feature,
  .card {
    min-width: 0;
    padding: 18px;
    margin-bottom: 20px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 13px 12px;
  }
  .cta-button,
  .main-nav .cta-nav  {
    padding: 10px 14px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .service-list,
  .content-grid,
  .card-container { gap: 12px; }
  .footer-top {
    gap: 14px;
    padding: 18px 0 7px;
  }
}
@media (max-width: 530px) {
  html { font-size: 14px; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
  .container { padding: 0 5px; }
  .card, .feature {
    padding: 10px 7px;
  }
  .footer-menu { gap: 9px; padding-bottom: 6px; }
  .footer-bottom { font-size: .93rem; }
  .testimonial-card {
    min-width: 0;
    max-width: none;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 6px 12px 8px;
    gap: 8px;
    font-size: .95rem;
  }
}

/* =============================
   PRINT OPTIMIZATION
============================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  body, .container { background: #fff; color: #000; }
}


/* =============================
   END OF CSS
============================== */
