/* === 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, 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, 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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f5f7fa;
  color: #1A1A1A;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #24577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB700;
  outline: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}
ul, ol {
  margin-left: 24px;
}
strong {
  font-weight: 700;
}

/* === TYPOGRAPHY SCALE & LUXURY FONT STYLES === */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #24577A;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #24577A;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #24577A;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #24577A;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.7;
}
.form-placeholder {
  color: #666;
  font-style: italic;
}

/* === GENERIC CONTAINER AND SPACING === */
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  padding: 24px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(36, 87, 122, 0.08);
}

@media (max-width: 950px) {
  .container { max-width: 960px; }
}
@media (max-width: 768px) {
  .container { max-width: 100%; }
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(36, 87, 122, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 0 18px 0;
  width: 100%;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #24577A;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F5EFE1;
  color: #C19729;
}
.logo-link {
  margin-right: 24px;
  display: flex;
  align-items: center;
}
.cta-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: #24577A;
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 36px;
  border: 2px solid #FFB700;
  box-shadow: 0 2px 14px 0 rgba(36, 87, 122, 0.10);
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFB700;
  color: #24577A !important;
  border-color: #24577A;
  box-shadow: 0 4px 16px 0 rgba(255,183,0,0.10);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #24577A;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  top: 10px;
  z-index: 120;
  box-shadow: 0 1px 4px rgba(36,87,122,0.10);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F5EFE1;
  color: #FFB700;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.75,.01,.22,1);
  box-shadow: 0 0 40px 0 rgba(36,87,122,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #24577A;
  align-self: flex-end;
  background: none;
  border: none;
  margin: 16px 26px 6px 0;
  z-index: 151;
  transition: color 0.2s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 30px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #24577A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #EFEDEE;
  color: #C19729;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 10px;
    font-size: 0.97rem;
  }
  .cta-primary {
    padding: 9px 18px;
    margin-left: 4px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 0.94rem;
  }
  .logo-link {
    margin-right: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .logo-link {
    margin-right: 4px;
  }
}

/* === HERO SECTION / HEADERS === */
.hero {
  background: #24577A;
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 22px rgba(36,87,122,0.10);
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  height: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
}
.hero h1, .hero h2 {
  color: #fff;
}
.hero p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.hero .cta-primary {
  margin-top: 16px;
  background: #FFB700;
  color: #24577A !important;
  border: 2px solid #fff;
}
.hero .cta-primary:hover, .hero .cta-primary:focus {
  background: #fff;
  border-color: #FFB700;
  color: #FFB700 !important;
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    margin-bottom: 38px;
    border-radius: 0 0 16px 16px;
    padding: 24px 0;
  }
  .hero .content-wrapper {
    padding: 0;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
}

/* === FEATURES, CARDS, FLEXBOX MANDATORY === */
.features-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.features-grid > div {
  background: #f8f9fd;
  border-radius: 20px;
  flex: 1 1 250px;
  min-width: 200px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 2px 10px rgba(36,87,122,0.04);
  border-left: 4px solid #FFB700;
  margin-bottom: 8px;
  transition: box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.features-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(36,87,122,0.09);
}
.features-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.card-container {
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 2px 10px rgba(36,87,122,0.08);
  flex: 1 1 320px;
  padding: 28px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(255,183,0,0.07);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Text-image section mandatory flex */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.text-image-section img {
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(36,87,122,0.09);
}
.text-image-section .text {
  flex: 1 1 220px;
  min-width: 180px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  color: #222;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 4px 24px 0 rgba(36,87,122,0.13);
  margin-bottom: 24px;
  border-left: 5px solid #FFB700;
  min-width: 220px;
  max-width: 680px;
  margin-right: 0;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #24577A;
  font-weight: 500;
}

/* Feature item (for about/team/why choose us) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* === LISTS === */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 2px;
  font-size: 1rem;
}
ul li img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 4px;
  margin-bottom: 2px;
}

/* === BUTTONS, INTERACTIVES, MICRO-INTERACTIONS === */
button, .btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: #24577A;
  color: #fff;
  border-radius: 36px;
  border: 2px solid #FFB700;
  padding: 10px 33px;
  font-size: 1.02rem;
  box-shadow: 0 2px 12px rgba(36,87,122,0.07);
  margin-top: 4px;
  margin-right: 12px;
  transition: background 0.19s, color 0.19s, border 0.19s;
}
button:hover,
.btn:hover,
button:focus,
.btn:focus {
  background: #FFB700;
  color: #24577A;
  border-color: #24577A;
  outline: none;
}

/* === FOOTER === */
footer {
  background: #24577A;
  color: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 20px rgba(36,87,122,0.07);
  padding: 34px 0;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  align-items: center;
}
.footer-menu a {
  color: #FFB700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 8px;
  border-radius: 6px;
  transition: color 0.19s, background 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  background: rgba(255,183,0,0.18);
  outline: none;
}
footer address {
  color: #fff;
  font-style: normal;
  line-height: 1.6;
  font-size: 1rem;
}
footer address a {
  color: #fff;
  text-decoration: underline dotted;
}
footer address a:hover {
  color: #FFB700;
}
@media (max-width: 768px) {
  footer .container { padding-bottom: 20px; }
  .footer-menu { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* === MODALS, COOKIE BANNER, GDPR === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #222;
  border-top: 2px solid #FFB700;
  box-shadow: 0 -2px 22px 0 rgba(36,87,122,0.08);
  padding: 26px 18px 14px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  z-index: 260;
  animation: cookie-slide-in 0.44s cubic-bezier(.68,-0.55,.27,1.55) both;
}
.cookie-banner p {
  flex: 2 1 320px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border-radius: 26px;
  border: none;
  min-width: 120px;
}
.cookie-accept {
  background: #FFB700;
  color: #24577A;
  border: 2px solid #FFB700;
}
.cookie-accept:hover,
.cookie-accept:focus {
  background: #24577A;
  color: #fff;
  border: 2px solid #FFB700;
}
.cookie-reject {
  background: #fff;
  color: #24577A;
  border: 2px solid #24577A;
}
.cookie-reject:hover,
.cookie-reject:focus {
  background: #f2f4fa;
}
.cookie-settings {
  background: #24577A;
  color: #fff;
  border: 2px solid #FFB700;
}
.cookie-settings:hover,
.cookie-settings:focus {
  background: #FFB700;
  color: #24577A;
}
/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,87,122,0.20);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 60px 0 rgba(36,87,122,0.16);
  max-width: 380px;
  min-width: 280px;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-in 0.36s cubic-bezier(.77,-0.34,.48,1.33) both;
}
.cookie-modal h2 {
  color: #24577A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.38rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFB700;
  width: 18px;
  height: 18px;
}
.cookie-category label {
  color: #1A1A1A;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #24577A;
  font-size: 1.6rem;
  position: absolute;
  top: 14px;
  right: 20px;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #FFB700;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 15px 8px 9px 8px; }
  .cookie-modal { min-width: 92vw; max-width: 98vw; }
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0.2; }
  to   { transform: translateY(0);   opacity: 1;   }
}
@keyframes cookie-modal-in {
  from { transform: scale(0.93); opacity: 0.2; }
  to   { transform: scale(1);     opacity: 1;   }
}

/* === TABLES, FORMS, MISCELLANEOUS LAYOUTS === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(36,87,122,0.07);
}
th, td {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #e3e7ef;
  font-size: 1rem;
  color: #222;
}
th {
  background: #F5EFE1;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  color: #24577A;
}
tr:last-child td {
  border-bottom: none;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d8dee5;
  border-radius: 7px;
  font-size: 1rem;
  background: #F8FAFC;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color 0.19s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #FFB700;
  outline: none;
}
::placeholder {
  color: #aaa;
}

label {
  display: block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #24577A;
  margin-bottom: 7px;
  font-size: 1rem;
}

/* === VISUAL ACCENTS, PREMIUM DETAILS === */
.section {
  border-top: 3px solid #FFB700;
}
.features-grid > div, .card, .testimonial-card {
  border-top: 2px solid #FFB700;
}

/* Luxury gold accent underline for headings */
h2::after{
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  background: #FFB700;
  border-radius: 2px;
  margin-top: 7px;
}

/* Responsive content grid */
@media (max-width: 900px) {
  .features-grid, .card-container, .content-grid {
    gap: 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .card-container, .content-grid, .features-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 18px 10px;
  }
}

/* === MISC === */
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 26px;
}
.text-section ul {
  margin-bottom: 19px;
}
.text-section li {
  padding-left: 0;
}

::-webkit-scrollbar {
  width: 8px;
  background: #ECECEC;
}
::-webkit-scrollbar-thumb {
  background: #FFB700;
  border-radius: 6px;
}

/* === BRAND FONTS === */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'), url('https://fonts.gstatic.com/s/montserrat/v24/JTUQjIg1_i6t8kCHKm459Wlhzg.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.ttf') format('truetype');
}

/* === ANIMATIONS & HOVER EFFECTS === */
a, button, .cta-primary, .main-nav a, .footer-menu a {
  transition: background .12s, color .15s, box-shadow .22s, border .21s;
}
.card, .features-grid > div, .testimonial-card {
  transition: box-shadow .22s, border-color .2s;
}
.card:hover, .features-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(36,87,122,0.11) !important;
  border-color: #C19729;
}

/* === LUXURY PREMIUM DETAILS === */
.features-grid > div, .card, .testimonial-card {
  border-top-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

/* === Z-INDEX LAYERING === */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal { z-index: 200; }

/* === UTILITY CLASSES === */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }

/* === ACCESSIBILITY FOCUS VISIBLE === */
a:focus-visible, button:focus-visible {
  outline: 2px solid #FFB700;
  outline-offset: 2px;
}
