/* ---- 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, 
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #203045;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #204163;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B32B;
}
ul, ol {
  margin-left: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #204163;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #243650;
}
strong {
  font-weight: 700;
  color: #204163;
}
small {
  font-size: 0.95rem;
  color: #717171;
}

/* ---- LUXURY/PREMIUM COLORS ---- */
:root {
  --color-primary: #204163;
  --color-secondary: #E6E9ED;
  --color-accent: #F7B32B;
  --gold: #C1A05A;
  --gold-dark: #9E7E3A;
  --bg-light: #F9F9FA;
  --bg-dark: #1F2632;
  --text-dark: #172135;
  --text-light: #f9f9fa;
}

/* ---- CONTAINERS & LAYOUTS ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: 18px;
  box-shadow: 0 4px 26px rgba(32,65,99,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ---- FLEXBOX UTILITY CLASSES ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(32,65,99,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.3s;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 38px rgba(32,65,99,0.13);
}
.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;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(32,65,99,0.11);
  border: 1.5px solid var(--color-secondary);
  max-width: 580px;
  width: 100%;
  transition: border-color 0.22s, box-shadow 0.32s;
}
.testimonial-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 34px rgba(247,179,43,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---- RESPONSIVE & MOBILE FIRST ---- */
@media (max-width: 1180px) {
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 30px 8px;
  }
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 36px;
    padding: 22px 4px;
  }
}

/* ---- HEADER & NAV ---- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 0 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #E6E9ED;
}
header > a img {
  height: 46px;
  width: auto;
  margin-right: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #204163;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-bottom 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--color-accent);
}
.cta-btn {
  background: linear-gradient(90deg, var(--gold), var(--color-accent));
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(32,65,99,0.08);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-left: 28px;
  transition: box-shadow 0.18s, background 0.28s;
  cursor: pointer;
  outline: none;
  position: relative;
}
.cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 20%;
  bottom: 0;
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--color-accent), var(--gold-dark));
  box-shadow: 0 4px 24px rgba(247,179,43,0.13);
  color: #fff; 
}
.cta-btn:hover::after, .cta-btn:focus::after { opacity: 1; }

/* Hide .cta-btn on small screens for menu clarity; will be shown in mobile menu */
@media (max-width: 900px) {
  .cta-btn {
    margin-left: 0;
    font-size: 1rem;
    padding: 10px 18px;
  }
}

/* --- HAMBURGER MENU --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 24px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-radius: 50%;
  padding: 6px 8px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}
@media (min-width: 1000px) {
  .mobile-menu-toggle { display: none; }
}

/* HIDE NAV ON MOBILE, SHOW MENU TOGGLE */
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
}

/* ---- MOBILE NAV ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,65,99,0.93);
  z-index: 5500;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.63,.09,.67,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  padding: 20px 22px 6px 22px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: 50%;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
  background: rgba(247,179,43,0.20);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0 0 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 8px 0;
  width: 100%;
  transition: color 0.22s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

/* ---- FOOTER ---- */
footer {
  background: #fff;
  border-top: 1px solid var(--color-secondary);
  padding: 36px 0 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: column;
  margin-top: 60px;
}
footer > a img {
  height: 44px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
footer nav a {
  font-size: 1rem;
  color: #717171;
  border-bottom: 2px solid transparent;
  padding-bottom: 1.5px;
  transition: border 0.2s, color 0.2s;
}
footer nav a:focus, footer nav a:hover {
  color: var(--gold);
  border-bottom: 2px solid var(--color-accent);
}
footer small {
  color: #9CA9BC;
  margin-top: 10px;
}
@media (min-width: 750px) {
  footer {
    flex-direction: row;
    gap: 28px;
    justify-content: flex-start;
    align-items: flex-end;
  }
}

/* ---- SPECIAL ELEMENTS ---- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 18px 0 0 0;
}
.feature-grid > div {
  background: #fff;
  border: 1.5px solid var(--color-secondary);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(32,65,99,0.06);
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 310px;
  flex: 1 1 220px;
  transition: border 0.22s, box-shadow 0.22s;
  gap: 8px;
}
.feature-grid > div img {
  height: 38px;
  margin-bottom: 10px;
}
.feature-grid > div:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(247,179,43,0.11);
}
@media (max-width: 1000px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature-grid > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ---- LISTS & ICONS ---- */
ul li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
ul li a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.22s;
  word-break: break-all;
}
ul li a:hover, ul li a:focus {
  color: var(--color-accent);
}
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  margin-top: 0;
}
ul > li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: #fff;
  color: #172135;
}
.testimonial-card p {
  color: #172135;
  font-size: 1.14rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--gold-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ---- BUTTONS & INTERACTIVES ---- */
button, input[type=button], input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
}
button {
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.21s;
}
button:disabled,
[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Generic hover for any in-card button */
.card .cta-btn, .feature-grid .cta-btn, .testimonial-card .cta-btn {
  margin-top: 18px;
}

/* ---- FORMS & INPUT ---- */
input, textarea, select {
  border: 1.5px solid #CED3DB;
  border-radius: 8px;
  outline: none;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  width: 100%;
  background: #fff;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
}
label {
  display: block;
  margin-bottom: 8px;
  color: #204163;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #F6F1E8;
  box-shadow: 0 -2px 18px rgba(32,65,99,0.09);
  z-index: 6010;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 16px 22px 16px;
  border-top: 2px solid var(--gold);
  font-size: 1.07rem;
  animation: cookie-fadein 0.8s;
}
@keyframes cookie-fadein { from { opacity: 0;  transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} }
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.cookie-btn {
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 2px 9px rgba(32,65,99,0.05);
  transition: background 0.17s, box-shadow 0.21s;
  outline: none;
  margin-right: 6px;
}
.cookie-btn.accept {
  background: var(--gold);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 3px 16px rgba(247,179,43,0.08);
}

/* ---- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  background: #fffde7;
  border-radius: 20px;
  z-index: 10000;
  box-shadow: 0 10px 80px rgba(32,65,99,0.19);
  padding: 36px 30px 28px 30px;
  width: 97%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-in 0.44s cubic-bezier(.82,.01,.45,1.04);
}
@keyframes cookie-modal-in {
    from { opacity: 0; transform: translate(-50%, -30%) scale(0.96);} to { opacity: 1; transform: translate(-50%, -50%) scale(1);}
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 9px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
}
.cookie-modal-category label {
  margin-bottom: 0;
  font-size: 1.04rem;
  color: #204163;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px; height: 18px;
  margin-right: 0;
}
.cookie-modal .cookie-category-essential {
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-modal .cookie-modal-buttons {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  padding: 9px 16px;
  min-width: 110px;
}

/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,41,60,0.55);
  z-index: 9999;
  animation: fadein .37s;
}

/* ---- MISC ---- */
::-webkit-input-placeholder { color: #a1a1a1; }
::-moz-placeholder          { color: #a1a1a1; }
:-ms-input-placeholder      { color: #a1a1a1; }
::placeholder              { color: #a1a1a1; }

hr {
  border: 0;
  border-top: 2px solid var(--color-secondary);
  margin: 36px 0 34px 0;
}

/* ---- ELEVATED DETAILS & ACCENTS ---- */
h1, h2, h3, h4 {
  text-shadow: 0 2px 5px rgba(247,179,43,0.03);
}
h1 span, h2 span, h3 span {
  color: var(--gold);
}

/* Gold accents for list span, icons, highlights */
ul li span, .feature-grid > div h3, .testimonial-card span {
  color: var(--gold-dark);
}

/* Decorative gold lines */
.section > .container > .content-wrapper > h2 {
  border-left: 6px solid var(--gold);
  padding-left: 16px;
}
@media (max-width: 600px) {
  .section > .container > .content-wrapper > h2 {
    padding-left: 8px;
    border-left: 3.5px solid var(--gold);
  }
}

/* ---- CARD ELEVATION FOR SERVICE/REALISATION/ADVICE ---- */
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow .19s, border 0.21s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 10px 38px rgba(247,179,43,0.13), 0 2px 12px rgba(32,65,99,0.08);
  border-color: var(--color-accent);
}

/* ---- VISUAL HIERARCHY SPACING ---- */
main > section { margin-bottom: 60px; }
main > section:last-child { margin-bottom: 0; }
.container { margin-bottom: 36px; }
@media (max-width: 768px) {
  main > section { margin-bottom: 38px; }
  .container { margin-bottom: 22px; }
}

/* ---- ACCESSIBILITY & FOCUS ---- */
a, button, input, .cta-btn, .cookie-btn {
  outline: none;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
  z-index: 4;
}

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 10px;
  background: #E6E9ED;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}

/* ---- PRINT (FOR LEGAL PAGES) ---- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { padding: 0; }
  body { background: #fff !important; }
}

/* ---- TRANSITIONS & MICRO-ANIMATIONS ---- */
.cta-btn, .cookie-btn, button {
  transition: background 0.19s, color 0.16s, box-shadow 0.19s, border 0.23s;
}
.cta-btn:active, .cookie-btn:active, button:active {
  transform: translateY(2px) scale(0.98);
}

/* ---- END ---- */
