/* --- 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F5F5;
  color: #22324C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #22324C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F9B233;
  outline-offset: 2px;
}
strong {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22324C;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 26px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol { color: #2D3A4F; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

/* ------- LUXURY PREMIUM DESIGN COLORS ------- */
:root {
  --primary: #22324C;
  --secondary: #F5F5F5;
  --accent: #F9B233;
  --gold: #F9B233;
  --offwhite: #FDFCF7;
  --gray: #898D9A;
  --shadow: 0 6px 16px rgba(34,50,76,0.09), 0px 2px 6px rgba(34,50,76,0.07);
}

/* --- CONTAINER & FLEX FOUNDATION --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--primary);
  color: var(--secondary);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(34,50,76,0.07);
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
header a img { height: 38px; }

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 6px 0;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}

.cta-button {
  background: linear-gradient(90deg, var(--gold) 80%, #fff5e0 100%);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 23px;
  padding: 11px 36px;
  margin-left: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.22s, transform 0.17s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
  position: relative;
  letter-spacing: 0.012em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(249,178,51,0.10);
  transform: translateY(-2px) scale(1.025);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--gold);
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 5px;
  margin-left: 12px;
  transition: background 0.15s;
  z-index: 198;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--gold);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(34,50,76, 0.98);
  z-index: 199;
  overflow-y: auto;
  padding-top: 30px;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.6,.01,.6,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--gold);
  font-size: 2rem;
  border: none;
  margin-right: 24px;
  margin-bottom: 5px;
  cursor: pointer;
  z-index: 201;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: center;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(249,178,51,0.11);
  transition: background 0.18s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: rgba(249,178,51,0.06);
}

@media (max-width: 1110px) {
  header .container { flex-wrap: wrap; }
  .main-nav { gap: 16px; }
  .cta-button { font-size: 1rem; padding: 10px 26px; }
}

@media (max-width: 920px) {
  .main-nav { gap: 8px; }
  header .container { gap: 18px; }
  .cta-button { padding: 9px 19px; }
}

@media (max-width: 820px) {
  header .container { padding-left: 10px; padding-right: 10px; }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* --- SECTIONS, SPACING & FLEX PATTERNS --- */
.section, section, .about-hero, .company-story, .team, .why-us, .services-hero, .services, .process, .project-overviews, .project-highlights, .review-summary, .testimonials, .faq-list, .thank-you, .contact-hero, .contact-info, .contact-privacy, .legal-hero, .privacy-policy, .gdpr-content, .cookie-policy, .terms-of-use, .services-overview, .features, .trust-signals, .cta, .testimonials-hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--offwhite);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* --- FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 32px 22px;
  position: relative;
  min-width: 262px;
  flex: 1 1 300px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(249,178,51,0.18);
  transform: translateY(-2px) scale(1.014);
}

.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;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1.5px solid var(--gold);
  border-radius: 17px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  color: #22324C;
  max-width: 650px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(249,178,51,0.15); 
  transform: translateY(-2px) scale(1.012); 
}
.testimonial-card p {
  font-size: 1.16rem;
  line-height: 1.5;
  color: #22324C;
  margin-bottom: 8px;
  text-align: center;
}
.testimonial-card span {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HOMEPAGE CARDS & FEATURES --- */
.features .feature-grid, .services-overview .service-list, .services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.features .feature-grid li,
.services-overview .service-list li,
.services .service-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 18px 26px 18px;
  flex: 1 1 230px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.17s, transform 0.14s;
  border: 1.3px solid #ebe7db;
  margin-bottom: 20px;
}
.features .feature-grid li:hover,
.services-overview .service-list li:hover,
.services .service-grid li:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(249,178,51,0.09);
  transform: translateY(-2px) scale(1.015);
}
.features .feature-grid img,
.services-overview .service-list img,
.services .service-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.features h3, .services-overview h3, .services h3 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.17rem;
  margin-bottom: 6px;
}
.features p, .services-overview p, .services p {
  color: #585F6E;
  font-size: 1rem;
}

/* --- PROJECTS --- */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 18px 0;
}
.project-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 34px 26px;
  border-left: 6px solid var(--gold);
  margin-bottom: 20px;
}
.project-block h3 {
  color: var(--primary);
  font-size: 1.27rem;
  margin-bottom: 10px;
}
.project-block p {
  color: #222e3c;
}

/* --- RATINGS & STARS --- */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff8e4;
  border-radius: 13px;
  padding: 18px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.rating-summary .stars {
  display: flex;
  gap: 3px;
}
.rating-summary img { height: 22px; width: 22px; }

/* --- CALL TO ACTION (CTA) BLOCKS --- */
.cta {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(34,50,76,0.19);
  margin-bottom: 60px;
  padding: 54px 20px 56px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h2, .cta p { color: var(--secondary); }
.cta .cta-button {
  background: var(--gold);
  color: var(--primary);
  margin-top: 20px;
}
.cta .cta-button:hover { background: #fff5e0; color: var(--primary); }

/* --- TRUST SIGNALS --- */
.trust-signals {
  background: #fff;
  border-radius: 16px;
  border: 1.6px solid #ebebeb;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.trust-signals ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-signals li {
  padding-left: 18px;
  color: #494F5D;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 38px 0 24px 0;
  border-top: 2px solid var(--gold);
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.16s;
  padding: 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
}
.footer-info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.footer-info li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #eedfb1;
  font-size: 0.97rem;
}
.footer-info img {
  height: 18px;
  width: 18px;
  margin-right: 4px;
}

/* --- LEGAL & THANK YOU PAGES --- */
.legal-hero,.privacy-policy,.gdpr-content,.cookie-policy,.terms-of-use,
.thank-you,.contact-privacy {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  color: #22324C;
}
.thank-you a.cta-button {
  margin-top: 25px;
}

/* --- MAP EMBED --- */
.map-embed {
  margin: 18px 0 22px 0;
  background: #f6f5f2;
  border: 1px solid #efd496;
  border-radius: 8px;
  padding: 20px 15px;
  font-size: 1rem;
  color: #22324C;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #22324C;
  box-shadow: 0 -4px 24px rgba(34,50,76,0.09);
  padding: 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 210;
  gap: 18px;
  border-top: 2px solid var(--gold);
  animation: cookieIn .5s cubic-bezier(.6,0,.3,1);
}
@keyframes cookieIn {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  max-width: 600px;
  margin: 0 15px 0 0;
  flex: 1;
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  margin-left: 12px;
  margin-right: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.16s, color 0.18s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(34,50,76,0.05);
}
.cookie-consent-banner .cookie-btn.accept {
  background: var(--gold);
  color: var(--primary);
}
.cookie-consent-banner .cookie-btn.accept:hover, .cookie-consent-banner .cookie-btn.accept:focus {
  background: var(--primary);
  color: var(--gold);
}
.cookie-consent-banner .cookie-btn.reject {
  background: #fff;
  border: 1.3px solid #eedfb1;
  color: var(--primary);
}
.cookie-consent-banner .cookie-btn.reject:hover, .cookie-consent-banner .cookie-btn.reject:focus {
  background: #fee7b7;
}
.cookie-consent-banner .cookie-btn.settings {
  background: transparent;
  color: #7a6c4d;
  text-decoration: underline;
}
.cookie-consent-banner .cookie-btn.settings:hover {
  color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(34,50,76,0.61);
  z-index: 211;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.38s cubic-bezier(.6,0,.3,1);
}
@keyframes cookieModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fffbea;
  color: #22324C;
  border-radius: 18px;
  max-width: 460px;
  width: 95vw;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 8px 48px rgba(34,50,76,0.20);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-cat {
  margin: 16px 0 8px 0;
  font-weight: 600;
  color: var(--gold);
  font-family: 'Montserrat',sans-serif;
}
.cookie-modal .cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}
.cookie-modal .cookie-switch {
  width: 34px; height: 22px;
  border-radius: 11px;
  background: #7856183a;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal .cookie-switch[data-enabled='true'] {
  background: var(--gold);
}
.cookie-modal .cookie-switch span {
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.09);
  transition: left 0.18s;
}
.cookie-modal .cookie-switch[data-enabled='true'] span {
  left: 14px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top:16px; right: 22px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .cookie-action-row {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  padding: 9px 23px;
  border-radius: 21px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: var(--gold);
  color: var(--primary);
  transition: background 0.12s, color 0.11s;
}
.cookie-modal .cookie-btn:hover {
  background: var(--primary);
  color: var(--gold);
}

/* --- FAQ PAGE: ACCORDION (Optional improvement) --- */
.faq-list ul > li {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 23px 18px 14px 21px;
  margin-bottom: 20px;
  color: #22324C;
  transition: box-shadow 0.14s, border-color 0.14s;
  border-left: 4px solid #efe2ba;
}
.faq-list h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.faq-list p {
  font-size: 1rem;
  color: #444a5c;
}

/* --- ABOUT US TEAM --- */
.team ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- CONTACT PAGE --- */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info li img {
  width: 20px; height: 20px;
}
.contact-info a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.16s;
}
.contact-info a:hover { color: var(--gold); }

/* --- MISC. LUXURY MICRO-EFFECTS --- */
::-webkit-scrollbar {
  width: 10px;
  background: #f6f4ef;
}
::-webkit-scrollbar-thumb {
  background: #efdbc7;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* --- ANIMATION FOR BUTTONS AND LINKS --- */
button, .cta-button, .cookie-btn, a {
  transition: background 0.22s, color 0.201s, box-shadow 0.19s, border 0.16s;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 980px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .card, .project-block {
    padding: 22px 11px;
  }
  .features .feature-grid li,
  .services-overview .service-list li, .services .service-grid li {
    padding: 18px 8px 16px 12px;
  }
}
@media (max-width: 768px) {
  .container { padding-left:5vw; padding-right:5vw; }
  .section, section, .thank-you, .legal-hero,.privacy-policy,.gdpr-content,.cookie-policy,
  .terms-of-use, .about-hero, .company-story, .team, .why-us, .services-hero, .services, .process,.project-overviews,.project-highlights,.review-summary,.testimonials, .contact-hero, .contact-info, .contact-privacy{
    margin-bottom: 36px;
    padding: 24px 6px;
    border-radius: 11px;
  }
  .card { padding: 16px 3vw; margin-bottom: 16px; border-radius: 10px; }
  .testimonial-card { padding: 16px 2vw; border-radius: 10px; }
  .feature-item, .features .feature-grid li, .services-overview .service-list li, .services .service-grid li { min-width: 0; width: 100%; }
  .features .feature-grid,
  .services-overview .service-list,
  .services .service-grid { flex-direction: column; gap: 18px; }
  .project-list { gap: 16px; }
  .project-block { padding: 16px 7px; border-radius: 8px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-nav { gap: 13px; font-size: 0.98rem; }
  .footer-info li { font-size: 0.92rem; }
}
@media (max-width: 500px) {
  body { font-size: 14px; }
  .container { padding-left: 3vw; padding-right: 3vw; }
  .cta-button, .cookie-consent-banner .cookie-btn, .cookie-modal .cookie-btn {
    padding: 8px 11px;
    font-size: 0.98rem;
  }
  .cookie-modal { padding: 20px 7vw; }
  .cookie-modal .cookie-action-row { flex-direction: column; gap: 7px; }
}

/* --- ACCESSIBILITY FOCUSED --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* --- MISC. --- */
hr { border: none; height: 2px; background: #eedfb1; margin: 30px 0; }

/* --- END: CSS --- */
