/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
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,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #F5F7FA;
  color: #273447;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
:focus {
  outline: 2px solid #67A7D1;
  outline-offset: 2px;
}

/* === THEME VARIABLES & BASE COLORS === */
:root {
  --primary: #1B3A6B;
  --primary-darker: #162e58;
  --secondary: #67A7D1;
  --secondary-hover: #5293bf;
  --accent: #F5F7FA;
  --gray: #e5eaf1;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --shadow-sm: 0 1px 6px rgba(27,58,107,0.08);
  --shadow-md: 0 4px 24px rgba(27,58,107,0.11);
  --text: #273447;
  --text-secondary: #567098;
  --white: #fff;
  --success: #20ad60;
  --danger: #f2484b;
}

/* === GLOBAL CONTAINERS AND WRAPPERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* === TYPOGRAPHY & HEADINGS === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, address, span, dd, dt, label {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
small {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* === BUTTONS === */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  margin-right: 16px;
  margin-bottom: 8px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
  border: 1px solid var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  border-color: var(--secondary-hover);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(27,58,107,0.15);
}
.btn-secondary {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary.large {
  padding: 18px 48px;
  font-size: 1.25rem;
}

/* === NAVIGATION === */
header {
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 28px;
  padding: 12px 0;
}
.main-nav > a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.18s;
  padding: 8px 12px;
  border-radius: 4px;
}
.main-nav > a:not([class*='btn']) {
  &:hover, &:focus {
    color: var(--secondary);
    background: var(--gray);
  }
}
.main-nav img[alt="Breezy Journeys"] {
  height: 40px;
  margin-right: 16px;
}

/* === MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  margin-left: auto;
  cursor: pointer;
  z-index: 103;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: 0 0 40px 0 rgba(27,58,107,0.11);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1);
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 24px 32px 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  z-index: 201;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 13px 0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* === HERO SECTIONS & SECTION SPACING === */
.section, .hero, [class*="-hero"], .about-summary, .about-intro, .about-team, .about-benefits, .client-portal-hero, .blog-hero, .process-hero, .policy-content, .contact-hero, .thank-you-message, .cta-section, .faq, .steps, .features, .testimonials, .account-features, .client-support, .client-cta, .blog-list, .services-preview, .services-overview, .blog-newsletter, .contact-details, .benefits {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.hero, [class*="-hero"] {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--primary);
  box-shadow: none;
  border-radius: 0 0 18px 18px;
}
.hero h1, .hero h2, [class*='-hero'] h1 {
  color: var(--primary-darker);
}

/* === FLEX & LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  min-width: 280px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === FEATURES & CARDS === */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card, .service-card {
  flex: 1 1 260px;
  border-radius: 10px;
  background: var(--gray);
  box-shadow: var(--shadow-sm);
  padding: 28px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.16s, transform 0.18s;
  border: 1px solid #e0e7ef;
}
.feature-card:hover, .service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
  border-color: var(--secondary);
}
.feature-card img, .service-card img {
  height: 44px;
  width: 44px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 540px;
}
.testimonial-card p {
  color: var(--text);
  font-size: 1.15rem;
  font-style: italic;
}
.testimonial-card footer {
  background-color: transparent;
  color: var(--primary);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: var(--font-body);
}

/* === LISTS & TIMELINES === */
ul, ol {
  margin-left: 18px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 9px;
  padding-left: 0;
  position: relative;
}
ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 9px;
}

ol li::before {
  content: none;
}

/* === BLOG LISTS === */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-list li {
  padding: 24px 18px;
  background: var(--gray);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
  transition: box-shadow 0.14s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.post-list li:hover {
  box-shadow: var(--shadow-md);
}
.post-list h3 {
  font-size: 1.18rem;
  margin-bottom: 4px;
  color: var(--primary-darker);
}
.post-list span {
  font-size: 0.93rem;
  color: var(--text-secondary);
}
.category-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.category-filters a {
  background: var(--accent);
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 1rem;
  border: 1px solid var(--secondary);
  margin-right: 5px;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.category-filters a:hover, .category-filters a.active {
  background: var(--secondary);
  color: var(--white);
  border: 1px solid var(--primary);
}

/* === NEWSLETTER FORM === */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}
form input[type="email"] {
  flex: 2 1 220px;
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid #dde7f2;
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font-body);
}
form button[type="submit"] {
  flex: 0 0 auto;
  min-width: 120px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.16s;
}
form button[type="submit"]:hover, form button[type="submit"]:focus {
  background: var(--secondary);
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 0;
  width: 100%;
  border-top: 3px solid var(--secondary);
}
footer span {
  color: white !important;
}
footer .container {
  padding: 24px 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-top a img {
  height: 42px;
}
.footer-quick-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-quick-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 5px 2px;
  transition: color 0.15s;
}
.footer-quick-links a:hover {
  color: var(--secondary);
}
.footer-social {
  display: flex;
  gap: 13px;
  align-items: center;
}
.footer-contact address {
  font-style: normal;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  line-height: 1.7;
}
.footer-contact img {
  height: 18px;
  vertical-align: text-bottom;
  margin-right: 7px;
}
.footer-legal {
  margin: 16px 0 0 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.97rem;
}
.footer-legal a {
  color: var(--secondary);
  transition: color 0.14s, border-bottom 0.14s;
  border-bottom: 1px dashed #67A7D166;
}
.footer-legal a:hover {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #22386399;
  padding-top: 14px;
  text-align: left;
  font-size: 0.97rem;
  color: #cfdaeb;
}

/* === POLICY PAGES === */
.policy-content {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.policy-content h1, .policy-content h2 {
  color: var(--primary);
}
.policy-content ul li::before {
  background: var(--secondary);
}

/* === SPECIAL SECTIONS STYLES (FAQ, STEPS, CTA) === */
.faq dt {
  font-size: 1.14rem;
  font-weight: 600;
  margin-top: 24px;
  color: var(--primary);
}
.faq dd {
  margin-left: 12px;
  margin-bottom: 10px;
}
.timeline img {
  max-width: 370px;
  margin-top: 10px;
}
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-radius: 18px;
}
.cta-section h2, .cta-section p {
  color: var(--white);
}
.cta-section .btn-primary, .cta-section .btn-secondary {
  margin-top: 18px;
  font-size: 1.2rem;
  padding: 16px 44px;
}

/* === ACCOUNT & CLIENT ZONE === */
.account-features ul,
.client-support ul {
  margin-left: 16px;
  margin-bottom: 12px;
}
.account-features ul li,
.client-support ul li {
  margin-bottom: 8px;
}
.client-cta .btn-primary, .client-cta .btn-secondary {
  min-width: 130px;
  padding: 13px 30px;
}
.client-cta {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

/* === COOKIE CONSENT === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--secondary);
  box-shadow: 0 -2px 24px 0 rgba(27,58,107,0.13);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 18px;
  font-size: 1rem;
  color: var(--primary);
  animation: slideUpBanner 0.45s cubic-bezier(.25,.8,.25,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(130px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  max-width: 520px;
  color: var(--primary);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner .btn-primary, 
.cookie-banner .btn-secondary {
  padding: 8px 22px;
  margin: 0;
  min-width: 110px;
  font-size: 1rem;
}
.cookie-banner .btn-secondary {
  background: none;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.cookie-banner .btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
}

.cookie-pref-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,58,107,0.25);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.21s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-pref-modal.open {
  display: flex;
}
.cookie-pref-content {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px 28px 28px;
  min-width: 340px;
  max-width: 95vw;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--text);
}
.cookie-pref-content h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  color: var(--primary);
  font-weight: 600;
}
.cookie-close-modal {
  background: none;
  border: none;
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-pref-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-pref-actions .btn-primary, 
.cookie-pref-actions .btn-secondary {
  padding: 8px 20px;
  font-size: 1rem;
  margin: 0;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-top {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 0 18px;
  }
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px; padding-right: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    font-size: 0.97rem;
  }
  .content-wrapper, .hero .content-wrapper {
    padding: 0;
    gap: 18px;
  }
  .footer-quick-links {
    flex-direction: column;
    gap: 7px;
  }
  .cta-section .btn-primary, .cta-section .btn-secondary {
    font-size: 1rem;
    padding: 12px 18px;
  }
  .client-cta {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .feature-grid, .service-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .category-filters {
    gap: 7px;
  }
  .post-list li {
    padding: 14px 8px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  .section, .hero, [class*="-hero"], .about-summary, .about-intro, .about-team, .about-benefits, .client-portal-hero, .blog-hero, .process-hero, .policy-content, .contact-hero, .thank-you-message, .cta-section, .faq, .steps, .features, .testimonials, .account-features, .client-support, .client-cta, .blog-list, .services-preview, .services-overview, .blog-newsletter, .contact-details, .benefits {
    padding: 24px 0;
    border-radius: 0;
    margin-bottom: 36px;
  }
  .cookie-pref-content {
    min-width: 98vw;
    padding: 18px 6vw;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .footer-legal, .footer-bottom {
    flex-direction: column;
    gap: 5px;
    font-size: 0.93rem;
    justify-content: flex-start;
  }
}
