/* ==== 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,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #232323;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* ============== BRAND FONTS (Google Fonts import) ============== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #232323;
  --color-secondary: #F9D857; /* For accents & buttons */
  --color-accent: #fff; /* For high contrast backgrounds */
  --color-gray: #C6C8CC;
  --color-light-gray: #F1F1F1;
  --color-dark-gray: #141416;
  --brand-blue: #265470;
  --brand-yellow: #F9D857;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(40,40,45,0.06), 0 1.5px 4px rgba(40,40,45,0.04);
  --shadow-heavy: 0 6px 24px rgba(10,10,15,0.10);
  --transition: all 0.3s cubic-bezier(.47,1.64,.41,.8);
}

/* ==== BASE TYPOGRAPHY ==== */
body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-accent);
  font-size: 16px;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-dark-gray);
}
h1 {
  font-size: 2.75rem; /* 44px */
  line-height: 1.13;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
.lead {
  font-size: 1.25rem;
  color: var(--color-dark-gray);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 24px;
}
p {
  color: var(--color-primary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}
strong, b {
  color: var(--color-dark-gray);
  font-weight: 700;
}
ul, ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
}

/* ===== CONTAINER & SECTION SPACING ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Content wrapper for in-section content (flex for layout) */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
/* CUSTOM FLEX GAPS */
.feature-grid, .features-list, .service-cards, .services-list, .highlights-list, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 24px;
}
/* Pattern for card containers: */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-light-gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 240px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: var(--shadow-heavy);
}
.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 {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-heavy);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HEADER + NAVBAR ===== */
header {
  width: 100%;
  background: var(--color-accent);
  border-bottom: 1px solid #eee;
  box-shadow: 0 1.5px 6px rgba(25,25,30,0.04);
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  min-height: 82px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 8px 4px;
  transition: color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-blue);
}
.cta-btn {
  background: var(--color-dark-gray);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 30px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-left: 10px;
  box-shadow: var(--shadow);
  border: none;
  transition: background .18s, color .15s, transform 0.18s;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover,.cta-btn:focus {
  background: var(--brand-blue);
  color: var(--brand-yellow);
  transform: translateY(-2px) scale(1.045);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--color-dark-gray);
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  outline: 2px dotted var(--brand-blue);
}

/* ==== MOBILE MENU / OVERLAY ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(17,17,19,0.91);
  backdrop-filter: blur(2px);
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 44px;
  padding-left: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: 20px;
  font-size: 2.1rem;
  color: var(--brand-yellow);
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  margin-bottom: 24px;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-left: 32px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 0;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
}

/* Hide default nav on mobile, show burger */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== HERO + SECTIONS ==== */
section {
  margin-bottom: 60px;
  padding-top: 40px;
}
.content-wrapper {
  width: 100%;
}
.content-wrapper > h1, .content-wrapper > h2 {
  margin-bottom: 14px;
}
.feature-grid > div, .features-list > div, .service-cards > div, .services-list > div, .highlights-list > ul, .contact-reasons > ul {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s;
}
.feature-grid > div:hover, .features-list > div:hover, .service-cards > div:hover, .services-list > div:hover {
  box-shadow: var(--shadow-heavy);
}
.feature-grid img, .features-list img {
  margin-bottom: 18px;
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.5);
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  color: #232323;
  font-style: italic;
  font-size: 1.13rem;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--brand-blue);
  font-weight: 500;
  margin-bottom: 4px;
}
.star-rating {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-light-gray);
  color: var(--color-dark-gray);
  padding-top: 40px;
  padding-bottom: 16px;
  border-top: 1.5px solid #e2e2e2;
}
.footer-content {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-yellow);
}
.brand-info img {
  height: 38px;
  margin-bottom: 10px;
}
.brand-info p {
  font-size: 0.97rem;
  color: #6a6a6a;
  font-family: var(--font-body);
  margin-bottom: 4px;
}
.contact-details {
  font-size: 0.99rem;
  color: var(--color-dark-gray);
}
.contact-details a {
  color: var(--brand-blue);
  text-decoration: underline;
  transition: color .14s;
}
.contact-details a:hover {
  color: var(--color-secondary);
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}
.social-links a img {
  height: 31px;
  filter: grayscale(1) brightness(0.55) contrast(1.5);
  transition: filter .15s;
}
.social-links a:hover img {
  filter: grayscale(0) brightness(0.9) contrast(1.2);
}
.footer-bottom {
  text-align: center;
  font-size: 0.93rem;
  color: #707070;
  margin-top: 17px;
}

/* ===== PRICING TABLES ===== */
.pricing-table {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px 22px 24px;
  margin-bottom: 20px;
  margin-top: 10px;
  overflow-x: auto;
}
.pricing-table table {
  width: 100%;
  font-size: 1rem;
  color: var(--color-primary);
  background: none;
}
.pricing-table th, .pricing-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #dbdbdb;
  text-align: left;
}
.pricing-table th {
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.02em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ===== FAQ PAGE SPECIFIC ===== */
.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.faqs-list h3 {
  margin-top: 12px;
  margin-bottom: 10px;
}
.faqs-list ul {
  margin-bottom: 12px;
}
.contact-prompt {
  background: var(--brand-blue);
  border-radius: var(--radius);
  color: var(--color-accent);
  padding: 24px 22px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}
.contact-prompt a {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 600;
}

/* ====== RESPONSIVE DESIGN (MOBILE-FIRST) ===== */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-content, .feature-grid, .features-list, .service-cards, .services-list, .highlights-list, .testimonials {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.35rem;
    margin-bottom: 11px;
  }
  .main-nav {
    display: none !important;
  }
  .content-wrapper, .card-container, .footer-content, .feature-grid, .features-list, .service-cards, .services-list, .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-content {
    gap: 16px;
  }
  .pricing-table {
    padding: 18px 10px 10px 10px;
    font-size: 0.97rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 1.4rem;
  }
  .cta-btn {
    padding: 9px 18px;
    font-size: 0.98rem;
  }
}

/* ==== BUTTONS & INTERACTIVE ==== */
button, .button, .cta-btn {
  cursor: pointer;
  user-select: none;
}
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(25,25,25,0.98);
  color: #fff;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.13);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px 20px 12px;
  gap: 16px;
  font-size: 1rem;
  animation: bannerDrop .45s cubic-bezier(.47,1.19,.36,1.02);
}
@keyframes bannerDrop {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 25px;
  background: var(--brand-blue);
  color: var(--color-accent);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  box-shadow: var(--shadow);
  transition: background .18s, color .16s, transform .16s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--brand-yellow);
  color: var(--brand-blue);
  transform: translateY(-1.5px) scale(1.04);
}
.cookie-btn.secondary {
  background: var(--color-dark-gray);
  color: var(--color-accent);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #444;
  color: var(--color-secondary);
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.69);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .33s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius);
  min-width: 320px;
  max-width: 420px;
  width: 96vw;
  padding: 36px 20px 28px 24px;
  box-shadow: var(--shadow-heavy);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popupScale .38s cubic-bezier(.53,1.61,.33,1);
  position: relative;
}
@keyframes popupScale {
  from { transform: scale(.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  margin: 0 0 14px 0;
  color: var(--brand-blue);
  font-size: 1.23rem;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  justify-content: space-between;
}
.cookie-toggle {
  width: 41px;
  height: 24px;
  border-radius: 24px;
  background: var(--color-gray);
  position: relative;
  display: inline-block;
  transition: background .13s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-blue);
  transition: left .19s, background .18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--brand-yellow);
  left: 19px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--brand-blue);
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--brand-yellow);
}

/* ===== MISCELLANEOUS ELEMENTS ===== */
.quick-facts, .logistics-overview {
  background: var(--brand-blue);
  color: var(--color-accent);
  border-radius: var(--radius);
  padding: 18px 14px;
  font-size: 1.06rem;
  margin: 16px 0 22px 0;
}
.quick-facts ul {
  list-style: disc inside;
}
.logistics-overview p {
  color: #fff;
  margin-bottom: 0;
}
.text-section, .contact-details-block {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.contact-details-block p {
  margin-bottom: 9px;
}
input[type='checkbox'] {
  margin-right: 10px;
}

/* ===== ACCESSIBILITY & FOCUS STATES ===== */
a:focus, button:focus {
  outline: 2px dotted var(--brand-blue);
  outline-offset: 2px;
}

/* Visually hidden (for accessibility) */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* ========== PRINT BASIC ========== */
@media print {
  .mobile-menu, .mobile-menu.active, .cookie-banner, .cookie-modal, .mobile-menu-toggle {
    display: none !important;
  }
}
