/* =========================
   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, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #ECEFF4;
  color: #14213D;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}
ul, ol {
  padding-left: 1.1em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #E5E5E5;
}
th {
  background: #FCA311;
  color: #fff;
  text-align: left;
}

/* =========================
   BRAND FONTS & COLORS
========================= */
html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: linear-gradient(120deg,#ECEFF4 0%, #E5E5E5 85%, #fff 100%);
  color: #14213D;
}
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #14213D;
  letter-spacing: -.01em;
  line-height: 1.1;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
p,li,td,span {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.32rem; }
}

@media (min-width: 900px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
}

strong, b {
  color: #FCA311;
  font-weight: 700;
}

/* ========================
   LAYOUT CONTAINERS
======================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  padding: 0 14px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 22px 6px; margin-bottom: 32px; }
  .container { padding: 0 5px; }
}

.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =====================
   HEADER & NAVIGATION
===================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(20,33,61,0.06);
  position: sticky;
  top: 0;
  z-index: 102;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 24px;
}
.main-nav img {
  height: 44px;
  margin-right: 12px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.17s;
}
.main-nav a:not(.btn-primary):hover,
.footer-nav a:hover {
  color: #FCA311;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #14213D 60%, #3848a7 100%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 32px;
  border-radius: 24px;
  box-shadow: 0 6px 18px rgba(20,33,61,.10);
  transition: background 0.22s, box-shadow 0.24s, transform 0.11s;
  border: none;
  cursor: pointer;
  outline: none;
  margin-left: 14px;
  margin-top: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(100deg, #FCA311 40%, #14213D 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(252,163,17,0.10);
}
@media (max-width: 900px) {
  .main-nav { padding: 10px 7px; gap: 10px; }
  .main-nav img { height: 36px; }
  .btn-primary { padding: 10px 18px; font-size: 0.98rem; }
}

/* Hide nav/btn on mobile - show burger */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 16px;
    background: #fff;
    color: #14213D;
    border: none;
    font-size: 2.1rem;
    z-index: 205;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(20,33,61,.10);
    transition: background 0.14s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #FCA311;
    color: #fff;
  }
}

/* =============================
   MOBILE MENU
============================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 100vw;
  background: linear-gradient(135deg,#14213D 85%, #232a44 100%);
  color: #fff;
  box-shadow: -7px 0 30px rgba(20,33,61,.18);
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  z-index: 302;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 0 34px 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  text-align: right;
  margin: 14px 18px 10px auto;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 305;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FCA311;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 36px 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 0 8px 0;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCA311;
  color: #14213D;
}
@media (min-width: 951px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =====================
   HERO/SECTION SHARED
===================== */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:nth-of-type(odd):not(:first-child) {
  background: linear-gradient(90deg, #E5E5E5 70%, #fff 100%);
}
/* Allow for "gradient_modern" style hero backgrounds */
section:first-of-type {
  background: linear-gradient(115deg, #fff 65%, #FCA311 130%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 12px 32px rgba(252,163,17,.04);
}
@media (max-width: 768px) {
  section { padding: 18px 2px; margin-bottom: 26px; }
  section:first-of-type { border-radius: 0 0 22px 22px; }
}

/* =====================
   FLEX LAYOUT PATTERNS
===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(20,33,61,0.08);
  border-radius: 18px;
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px rgba(252,163,17,0.16);
  transform: translateY(-3px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* =====================
   SPECIAL UI COMPONENTS
===================== */
.feature-list, .features-grid, .service-list, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.feature-list li, .features-grid li, .service-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 13px 0 13px 0;
  border-radius: 10px;
}
.feature-list img,
.features-grid img,
.service-list img {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  margin-right: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (min-width: 800px) {
  .feature-list, .features-grid, .service-list {
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
  }
  .feature-list li, .features-grid li, .service-list li {
    flex: 1;
    min-width: 210px;
  }
}
.price {
  display: inline-block;
  color: #FCA311;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  margin-top: 10px;
}
.service-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(20,33,61,0.06);
  padding: 22px 19px 18px 19px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  box-shadow: 0 8px 34px rgba(252,163,17,0.16);
  transform: translateY(-3px) scale(1.012);
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    gap: 15px;
  }
}

.comparison-chart {
  background: #F8F9FB;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(20,33,61,0.05);
  padding: 20px 14px;
  margin: 18px 0 24px 0;
}
.comparison-chart h3 {
  font-size: 1.13rem;
  margin-bottom: 11px;
  color: #14213D;
}
.comparison-chart ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.testimonial-card {
  background: #fff;
  color: #14213D;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(20,33,61,.09);
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.13s;
  position: relative;
  border-left: 5px solid #FCA311;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(252,163,17,0.13);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-details {
  font-size: 0.96rem;
  color: #3848a7;
  opacity: 0.93;
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* =====================
   TEAM CARDS
===================== */
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(20,33,61,.08);
  padding: 22px 18px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 18px;
  min-width: 220px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.team-member blockquote {
  border-left: 3px solid #FCA311;
  margin-left: 0;
  color: #3848a7;
  font-style: italic;
  font-size: 1rem;
  padding: 4px 12px;
  background: #FAFAFA;
}
.team-member:hover {
  box-shadow: 0 8px 30px rgba(252,163,17,0.13);
  transform: translateY(-2.5px);
}
@media (max-width: 900px) {
  .team-member-cards {
    flex-direction: column;
    gap: 12px;
  }
  .team-member { min-width: 0; }
}

/* =====================
   FAQ
===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 9px rgba(20,33,61,0.07);
  padding: 17px 19px;
  margin-bottom: 8px;
  transition: box-shadow 0.17s, transform 0.11s;
  position: relative;
}
.faq-item:hover {
  box-shadow: 0 2px 21px rgba(252,163,17,0.10);
  transform: scale(1.011);
}
.faq-item h2, .faq-item h3 {
  font-size: 1.10rem;
  margin-bottom: 7px;
  color: #14213D;
  font-family: 'Montserrat', Arial, sans-serif;
}
.category-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.category-tabs li {
  list-style: none;
  background: #fff;
  color: #14213D;
  border-radius: 8px 8px 0 0;
  padding: 8px 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: background 0.13s, border-color 0.14s, color 0.13s;
}
.category-tabs li.active, .category-tabs li:hover {
  background: #FCA311;
  color: #fff;
  border-bottom: 3px solid #14213D;
}

/* =====================
   TABLES
===================== */
table {
  background: #fff;
  box-shadow: 0 2px 8px rgba(20,33,61,.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
}
tr:last-child td {
  border-bottom: none;
}

/* =====================
   CTA BUTTONS/SECTIONS
===================== */
.cta-section {
  background: linear-gradient(92deg, #14213D 85%, #FCA311 100%);
  color: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 40px rgba(20,33,61,0.10);
  padding: 48px 24px;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
}
@media (max-width: 700px) {
  .cta-section { padding: 32px 8px; border-radius: 11px; }
}

/* =====================
   FOOTER
===================== */
footer {
  background: #14213D;
  color: #fff;
  padding: 32px 0 20px 0;
  margin-top: 42px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  opacity: 0.87;
  transition: color 0.14s, opacity 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FCA311;
  opacity: 1;
}
.footer-contact {
  text-align: center;
  font-size: 0.97rem;
  margin-bottom: 7px;
  opacity: 0.93;
  color: #E5E5E5;
}
.footer-contact a { color: #FCA311; }

/* =============================
   CONTACT DETAILS & OTHERS
============================= */
.contact-details, .contact-info {
  margin-bottom: 18px;
  font-size: 1.01rem;
  color: #232a44;
}
.location-map {
  background: #F8F9FB;
  border-radius: 8px;
  padding: 24px;
  color: #868686;
  text-align: center;
  margin-top: 12px;
}

/* =====================
   SPACING UTILITIES
===================== */
.mb-0 { margin-bottom:0 !important; }
.mb-1 { margin-bottom:8px !important; }
.mb-2 { margin-bottom:16px !important; }
.mb-3 { margin-bottom:24px !important; }
.mt-2 { margin-top:16px !important; }

/* =====================
   RESPONSIVE & FLEX
===================== */
@media (max-width: 600px) {
  .service-card, .card, .team-member, .testimonial-card {
    padding: 14px 10px !important;
  }
}

@media (max-width: 450px) {
  body, html { font-size: 15px; }
  .container { padding: 0 1px; }
}

/* =====================
   ANIMATIONS & EFFECTS
===================== */
.btn-primary, .main-nav a, .faq-item, .card, .card:hover, .service-card, .service-card:hover, .testimonial-card, .testimonial-card:hover, .mobile-menu, .mobile-menu-toggle, .faq-item {
  transition: background 0.19s, color 0.14s, box-shadow 0.17s, transform 0.14s;
}

/* =====================
   COOKIE CONSENT BANNER
===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: #14213D;
  color: #fff;
  z-index: 6000;
  box-shadow: 0 -4px 34px rgba(20,33,61,0.09);
  font-size: 1.02rem;
  gap: 26px;
  flex-wrap: wrap;
  animation: slideBannerIn 0.59s cubic-bezier(.46,1.49,.59,.99);
}
@keyframes slideBannerIn {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
}
.cookie-btn {
  padding: 8px 28px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  background: #E5E5E5;
  color: #14213D;
  box-shadow: 0 2px 9px rgba(20,33,61,.11);
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.cookie-accept {
  background: #FCA311;
  color: #fff;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #14213D;
  color: #fff;
}
.cookie-btn.cookie-reject {
  background: #E5E5E5;
  color: #14213D;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #14213D;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: #14213D;
  border: 1px solid #FCA311;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #FCA311;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; gap: 13px; padding: 15px 2px; }
  .cookie-banner .cookie-actions { justify-content: flex-start; }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6100;
  left: 0; top:0; width: 100vw; height: 100vh;
  background: rgba(19,31,61,0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeBannerModal .22s cubic-bezier(.65,0,.35, 1.2);
}
@keyframes fadeBannerModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #14213D;
  border-radius: 16px;
  box-shadow: 0 8px 44px rgba(20,33,61,0.17);
  padding: 30px 28px 20px 28px;
  max-width: 420px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: modalIn .38s cubic-bezier(.77,0,.18,1);
}
@keyframes modalIn {
  from { transform: scale(.88) translateY(64px); opacity:0; }
  to   { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h3 {
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #14213D;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px; top:15px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #3848a7;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #FCA311;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 4px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #FCA311;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-essential {
  font-weight: 600;
  color: #14213D;
}
.cookie-modal .cookie-info {
  font-size: .99rem;
  color: #3848a7;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  justify-content: flex-end;
}

/* =====================
   SCROLLBAR
===================== */
::-webkit-scrollbar {
  width: 10px;
  background: #ECEFF4;
}
::-webkit-scrollbar-thumb {
  background: #E5E5E5;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d5d5d5;
}

/* =====================
   MISC/SMALL EFFECTS
===================== */
::selection {
  background: #FCA311;
  color: #fff;
}
input, button, select, textarea {
  font-family: inherit;
}

/* END OF MODERN GRADIENT FLEX LAYOUT CSS */