/* CSS Reset & Normalize */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body, html { height: 100%; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF;
  color: #1E2530;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: #FF5B2A; text-decoration: none; }
a:hover, a:focus { text-decoration: underline; color: #E04310; }

/* Brand Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:700,800&family=Roboto:400,500,700&display=swap');

/* Colors & Brand tokens */
:root {
  --brand-primary: #1E2530;
  --brand-secondary: #DEE4EC;
  --brand-accent: #FF5B2A;
  --brand-green: #1FDA9A;
  --brand-yellow: #FFD93B;
  --brand-pink: #FF82C6;
  --brand-blue: #1FC8F8;
  --brand-light: #fff;
  --brand-dark: #12151b;
  --shadow: 0 4px 32px 0 rgba(30,33,50,0.07), 0 1.5px 12px rgba(255,91,42,.06);
  --radius: 18px;
}

/* Typography */
h1, .display-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--brand-primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.18;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
p, ul, ol { margin-bottom: 18px; }
ul, ol { 
  padding-left: 24px;
  list-style-position: inside;
}
ul.anon, ol.anon { padding-left: 0; list-style: none; }
strong { color: var(--brand-accent); font-weight: 700; }

/* Container */
.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section & Spacing Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(30,33,50,0.05);
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.14s cubic-bezier(.44,1.26,0.70,1.03), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.01) rotate(-1deg);
  box-shadow: 0 8px 36px 0 rgba(255,91,42,0.15), 0 2px 20px rgba(30,37,48, .07);
}
.content-grid {
  display: flex;
  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: center;
  gap: 20px;
  background: #FFF;
  color: #1E2530;
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1.06rem;
  max-width: 470px;
  margin-bottom: 20px;
  margin-right: 18px;
  min-height: 180px;
  transition: box-shadow 0.18s;
}
.testimonial-card strong { color: var(--brand-accent); font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: .1px; margin-top: 10px; }
.testimonials .content-wrapper { flex-wrap: wrap; gap: 24px; }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-light);
  padding: 24px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 0 250px;
  min-width: 240px;
  margin-bottom: 20px;
  border-left: 7px solid var(--brand-accent);
  position: relative;
  transition: transform 0.13s cubic-bezier(.44,1.26,0.70,1.03), box-shadow 0.2s;
  cursor: pointer;
}
.feature-item:hover {
  transform: scale(1.027) rotate(-0.7deg);
  box-shadow: 0 4px 48px 0 rgba(255,91,42,0.20);
  background: var(--brand-secondary);
}
.feature-item img { width: 44px; height: 44px; }

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  list-style: disc outside;
  color: var(--brand-blue);
  font-size: 1.08em;
  font-weight: 500;
}
.usp-list li { background: var(--brand-pink); color: var(--brand-primary); padding: 8px 15px; border-radius: 12px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; box-shadow: 0 1px 8px 0 rgba(255,130,198,0.13); margin-bottom: 8px; margin-right: 8px; }

.text-section h3 { margin-top: 18px; }
.text-section ul, .text-section ol { margin-top: 10px; margin-bottom: 18px; }
.text-section ul { color: var(--brand-green); font-weight: 500; }

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Header */
header {
  background: var(--brand-secondary);
  box-shadow: 0 2px 12px 0 rgba(30,37,48,0.02);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img { height: 40px; }
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07em;
  color: var(--brand-primary);
  font-weight: 500;
  padding: 6px 0px;
  transition: color 0.15s;
}
header nav a:hover, header nav a:focus { color: var(--brand-accent); }

.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: .17px;
  font-size: 1.06em;
  background: var(--brand-accent);
  color: #fff;
  padding: 14px 34px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 32px 0 rgba(255,91,42,0.11);
  transition: filter 0.20s, box-shadow 0.15s, transform 0.12s;
  outline: none;
  margin-left: 10px;
}
.cta-button:hover, .cta-button:focus {
  filter: brightness(1.05) saturate(1.3);
  box-shadow: 0 8px 32px 0 rgba(255,91,42,0.17);
  transform: translateY(-2px) scale(1.04);
  color: var(--brand-yellow);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #fff;
  font-size: 2.25rem;
  padding: 6px 18px;
  border-radius: 18px;
  border: none;
  margin-left: 14px;
  box-shadow: 0 2px 18px 0 rgba(255,91,42,0.17);
  cursor: pointer;
  z-index: 24;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-pink);
  color: var(--brand-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-light);
  box-shadow: 0 2px 72px 0 rgba(30,37,48,.30);
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.77,.01,.35,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-accent);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 20px;
  padding: 4px 14px;
  align-self: flex-end;
  margin-right: 18px;
  margin-top: 3px;
  box-shadow: 0 3px 10px 0 rgba(255,91,42,.14);
  cursor: pointer;
  z-index: 1300;
  transition: background 0.11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--brand-pink); color: var(--brand-primary); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 28px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32em;
  color: var(--brand-primary);
  font-weight: 700;
  padding: 13px 0;
  border-radius: 14px;
  transition: background 0.17s, color 0.14s;
  width: fit-content;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-blue);
  color: #fff;
  text-decoration: none;
}

/* Hero Sections & Callouts */
.hero, .guide-intro, .service-hero, .confirmation {
  background: linear-gradient(90deg, var(--brand-pink) 0%, var(--brand-yellow) 100%);
  padding: 60px 0 46px;
}
.hero h1, .guide-intro h1, .service-hero h1, .confirmation h1 {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-shadow: 2px 4px 16px rgba(255,91,42,0.05);
  margin-bottom: 26px;
}
.hero .cta-button, .guide-intro .cta-button, .service-hero .cta-button, .confirmation .cta-button {
  margin-top: 12px;
}

/* Sections */
.features .content-wrapper { flex-wrap: wrap; gap: 20px; }
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.about-preview, .about-section, .why-choose-us, .service-details, .service-cta, .trends-overview, .guides-listing, .callout, .footer-info, .contact, .legal {
  margin-bottom: 60px;
  padding: 40px 0;
}
.callout {
  background: var(--brand-yellow);
  box-shadow: 0 4px 24px 0 rgba(255,217,59,0.18);
  border-radius: var(--radius);
}

/* Cards & Listing */
.guide-teaser {
  background: var(--brand-blue);
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1.08rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px rgba(31,200,248, 0.09);
}

/* Social / Legal / Attribution */
.social-links { display: flex; gap: 16px; margin-top: 12px; }
.social-links a { display: flex; align-items: center; background: var(--brand-accent); border-radius: 50%; width: 38px; height: 38px; justify-content: center; transition: background 0.14s; box-shadow: 0 1px 6px 0 rgba(255,91,42,0.13); }
.social-links a:hover { background: var(--brand-yellow); }
.social-links img { width: 22px; height: 22px; }
.legal-links { margin-top: 14px; color: var(--brand-primary); font-size: .98rem; letter-spacing: .07px; }
.legal-links a { margin-right: 8px; color: var(--brand-accent); font-weight: 500; }
.legal-links a:hover { color: var(--brand-pink); }

/* Footer */
footer { background: var(--brand-primary); color: #fff; padding: 36px 0 18px 0; position: relative; }
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
footer nav {
  display: flex;
  gap: 16px;
  margin: 10px 0;
}
footer nav a { color: var(--brand-yellow); font-family: 'Montserrat', Arial, sans-serif; font-size: 1em; opacity: 0.91; transition: color 0.17s; }
footer nav a:hover { color: var(--brand-pink); opacity: 1; }
footer img { height: 36px; margin-bottom: 6px; }
footer p { font-size: 1.01em; color: #fff; margin-bottom: 0; font-family: 'Roboto', sans-serif; letter-spacing: .06px; }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2400;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 -2px 16px 0 rgba(30,37,48,0.08);
  padding: 18px 22px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: bannerSlideUp 0.45s cubic-bezier(.61,-0.37,.49,1.45);
}
@keyframes bannerSlideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner p { margin: 0 12px 0 0; font-family: 'Roboto', Arial, sans-serif; font-size: .97em; }
.cookie-banner .cookie-btn, .cookie-banner .cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 14px;
  padding: 10px 22px;
  font-size: 1em;
  margin-right: 8px;
  margin-left: 1px;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.accept { background: var(--brand-accent); color: #fff; }
.cookie-banner .cookie-btn.reject { background: #ddd; color: var(--brand-accent); }
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus { background: var(--brand-pink); color: var(--brand-primary); }
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus { background: var(--brand-yellow); color: var(--brand-primary); }
.cookie-banner .cookie-settings { background: var(--brand-blue); color: #fff; }
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus { background: var(--brand-pink); color: var(--brand-dark); }

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(30,37,48, 0.44);
  z-index: 2450;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.26s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 12px 60px 0 rgba(30,37,48,0.25);
  padding: 30px 36px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopIn 0.32s cubic-bezier(.7,-0.45,.41,1.40);
}
@keyframes modalPopIn { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal h2 { margin-bottom: 8px; font-size: 1.36em; color: var(--brand-accent); }
.cookie-modal .cookie-category { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cookie-modal .cookie-category label { font-family:'Montserrat', Arial, sans-serif; font-weight: 700; color: var(--brand-primary); }
.cookie-modal .cookie-toggle { width: 38px; height: 22px; border-radius: 14px; background: #e4e8f7; position: relative; cursor: pointer; transition: background 0.14s; display: inline-block; }
.cookie-modal .cookie-toggle input { display:none; }
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: var(--brand-accent);
  border-radius: 50%;
  transition: left 0.20s, background 0.19s;
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 18px; background: var(--brand-green);
}
.cookie-modal .modal-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; margin-top: 8px; }
.cookie-modal .cookie-btn { padding: 9px 21px; border-radius: 13px; margin: 0 2px; font-family: 'Montserrat', Arial, sans-serif; font-size: .97em; }
.cookie-modal .cookie-btn.accept { background: var(--brand-accent); color: #fff; }
.cookie-modal .cookie-btn.reject { background: #eee; color: var(--brand-accent); }
.cookie-modal .cookie-btn.settings { background: var(--brand-blue); color: #fff; }
.cookie-modal .cookie-btn.accept:hover, .cookie-modal .cookie-btn.settings:hover { background: var(--brand-pink); color: var(--brand-primary); }
.cookie-modal .modal-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 1.8rem; color: var(--brand-accent); cursor: pointer; }

/* Animations & Micro-interactions */
a, .cta-button, button, .feature-item, .card {
  transition: background 0.15s, color 0.15s, box-shadow 0.14s, transform 0.13s;
}
.feature-item:hover,
.cta-button:hover,
.card:hover,
.cookie-btn:hover,
.cookie-settings:hover { filter: brightness(1.05) saturate(1.15); }

/* Responsive: Mobile First */
@media (max-width: 1020px){
  header .container { flex-direction: column; gap: 18px; }
  .usp-list { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .feature-item { min-width: 46vw; }
  .testimonial-card { min-width: 240px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 12px; padding-right: 12px; }
  header .container { flex-direction: row; flex-wrap: wrap; align-items: center; }
  header nav, .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { padding-top: 35px; }
  .feature-grid, .usp-list { gap: 14px; }
  .feature-item { min-width: 90vw; font-size: 1em; }
  .section, .about-section, .why-choose-us, .service-details, .service-cta, .guides-listing, .callout, .footer-info, .contact, .legal {
    padding: 26px 0;
    margin-bottom: 38px;
  }
  .hero, .guide-intro, .service-hero, .confirmation {
    padding: 38px 0 24px;
  }
  .testimonial-card { min-width: 96vw; font-size: 1em; max-width: 98vw; }
  .content-grid, .features .content-wrapper, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .usp-list { flex-direction: column; gap: 8px; }
  .cookie-modal { padding: 16px 7vw 18px; }
  .callout, .about-preview, .section { border-radius: 8px; }
}
@media (max-width: 540px) {
  h1, .display-title { font-size: 1.4rem; }
  h2 { font-size: 1.05rem; }
  .cta-button, .cookie-btn, .cookie-banner .cookie-btn, .cookie-banner .cookie-settings { font-size: .99em; padding: 10px 12px; }
  .feature-item { padding: 14px 12px; min-width: 92vw; }
  .testimonial-card { padding: 13px 7px; }
}

/* Accessibility: Focus Styles */
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2.5px dashed var(--brand-accent);
  outline-offset: 2px;
}

/* Utility: Misc */
.expert-insights { background: var(--brand-green); color: #fff; border-radius: 12px; padding: 10px 17px; font-style: italic; margin: 18px 0 10px 0; font-size: 1em; box-shadow: 0 2px 10px 0 rgba(31,218,154,0.13); }
.map-snippet { background: var(--brand-blue); color: #fff; border-radius: 11px; margin: 12px 0 0 0; padding: 12px 14px; font-size: .97em; }

/* Hide scrollbar for mobile menu overlay */
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/* Decorative animated dots for playful look (optional, can be JS-powered) */
.hero:before, .callout:before {
  content: '';
  display: block;
  position: absolute;
  top: 2vw; left: 4vw;
  width: 32px; height: 32px;
  background: var(--brand-yellow);
  opacity: .45;
  border-radius: 50%;
  z-index: 1;
  animation: dotFloat 4s infinite cubic-bezier(.88,-0.31,.1,1.35);
}
@keyframes dotFloat { from { transform: translateY(0) scale(1); opacity: .45; } 50% { transform: translateY(-18px) scale(1.15); opacity: .91; } to { transform: translateY(0) scale(1); opacity: .45; } }

/* --- End CSS --- */
