/* RESET & BASELINE ------------------------- */
html, body {
  box-sizing: border-box;
  font-size: 16px;
  margin: 0;
  padding: 0;
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F9FAFB;
  color: #264653;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #264653;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #B99B47;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}

/* FONT SCALE & HEADINGS --------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.15;
  color: #264653;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #264653;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #264653;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  margin-bottom: 10px;
}
p {
  font-size: 1rem;
  color: #264653;
  line-height: 1.7;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: #264653;
}

/* CONTAINER, SECTIONS, WRAPPERS ------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(38, 70, 83, 0.06);
}

/* BRAND COLORS ------------------------------ */
:root {
  --primary: #264653;
  --secondary: #E9C46A;
  --secondary-dark: #B99B47;
  --accent: #F9FAFB;
  --gold: #B99B47;
}

/* HEADER & NAVIGATION ----------------------- */
header {
  padding-top: 0;
  background: #fff;
  border-bottom: 1px solid #E9C46A33;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 75px;
  padding: 16px 20px;
}
header img {
  height: 48px;
  max-width: 220px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: #264653;
  padding: 6px 0;
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--secondary);
  width: 0;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 32px;
  background: linear-gradient(90deg, #E9C46A, #B99B47 80%);
  color: #264653;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(230,210,104,0.10);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, color 0.25s, transform 0.12s;
  margin-left: 24px;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #B99B47, #E9C46A 80%);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(185, 155, 71, 0.14);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE NAVIGATION ------------------------ */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: #264653;
  border: none;
  cursor: pointer;
  padding: 8px 18px 8px 8px;
  margin-left: 10px;
  transition: color 0.3s;
  z-index: 31;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary-dark);
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1A232BEE;
  padding: 32px 28px 18px 28px;
  z-index: 36;
  transition: transform 0.35s cubic-bezier(.42,1.13,0,1);
  transform: translateX(0);
  overflow-y: auto;
  box-shadow: 0 4px 60px 0 #26465333;
}
.mobile-menu:not(.active) {
  transform: translateX(-100vw);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E9C46A;
  font-size: 2.1rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 30px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 10px 0 10px 2px;
  border-bottom: 1px solid #E9C46A33;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #E9C46A;
  background: #264653AA;
}

@media (max-width: 1024px) {
  header nav {
    gap: 18px;
  }
  .btn-primary {
    margin-left: 10px;
    padding: 12px 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  header nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION ------------------------------ */
.hero {
  background: #264653;
  color: #fff;
  border-radius: 0 0 32px 32px;
  min-height: 340px;
  margin-bottom: 60px;
  padding: 64px 20px 48px 20px;
  position: relative;
  box-shadow: 0 8px 40px 0 #26465322, 0 1px 8px #E9C46A33;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  gap: 24px;
}
.hero h1, .hero .h1 {
  color: #E9C46A;
  margin-bottom: 18px;
  font-size: 2.5rem;
}
.hero p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.hero .btn-primary {
  margin: 0;
  background: linear-gradient(90deg, #B99B47, #E9C46A 90%);
  color: #264653;
  font-size: 1.16rem;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  color: #fff;
  background: linear-gradient(90deg, #E9C46A, #B99B47 70%);
}

@media (max-width: 900px) {
  .hero {
    padding: 38px 12px 32px 12px;
    min-height: 170px;
  }
  .hero h1, .hero .h1 {
    font-size: 1.9rem;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 30px 6px 18px 6px;
    min-height: 80px;
  }
  .hero h1, .hero .h1 {
    font-size: 1.2rem;
  }
  .hero .container {
    padding: 0;
  }
}

/* FLEXBOX UTILITY LAYOUTS ------------------- */
.feature-grid,
.service-grid,
.project-list,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 12px 0 #26465313;
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 28px 0 #B99B4725;
  transform: translateY(-2px) scale(1.012);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid,
  .service-grid,
  .project-list,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* FEATURE / SERVICE / PROJECT CARDS --------- */
.feature-item,
.service-tile,
.project-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAFAFB;
  border: 1.5px solid #E9C46A55;
  border-radius: 16px;
  padding: 30px 24px 26px 24px;
  min-width: 230px;
  flex: 1 1 270px;
  transition: border-color 0.24s, box-shadow 0.18s;
  box-shadow: 0 0.5px 6px 0 #E9C46A14;
  margin-bottom: 18px;
  position: relative;
}
.feature-item img,
.service-tile img,
.project-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-item h3,
.service-tile h3,
.project-item h3 {
  color: #264653;
}
.feature-item:hover, .feature-item:focus-within,
.service-tile:hover, .service-tile:focus-within,
.project-item:hover, .project-item:focus-within {
  border-color: #B99B47;
  box-shadow: 0 3px 18px 0 #B99B4724;
}

/* TIMELINE ---------------------------------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
  padding-left: 2px;
  list-style: none;
  counter-reset: stepNum;
}
.timeline li {
  position: relative;
  padding-left: 46px;
  font-size: 1.07rem;
  line-height: 1.5;
  min-height: 38px;
  color: #264653;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.timeline li img {
  position: absolute;
  left: 0;
  top: 6px;
  width: 32px;
  height: 32px;
}
.timeline li strong {
  color: #B99B47;
  font-weight: bold;
}

/* FAQ STYLES -------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid #B99B47AA;
  padding: 18px 22px;
  box-shadow: 0 1.5px 7px 0 #26465313;
  transition: box-shadow 0.22s;
}
.faq-item h3 {
  margin-bottom: 6px;
  color: #264653;
  font-size: 1.12rem;
  font-weight: 600;
}

/* TESTIMONIAL CARDS ------------------------- */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #222;
  border-radius: 16px;
  border: 1.5px solid #E9C46A32;
  box-shadow: 0 2px 12px #B99B4710;
  padding: 20px 32px 20px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 290px;
  max-width: 420px;
  gap: 20px;
  transition: transform 0.18s, box-shadow 0.22s;
}
.testimonial-card p {
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial-meta {
  color: #B99B47;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  text-align: center;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px 0 #B99B4729;
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* PROJECT LIST ------------------------------ */
.project-list {
  gap: 28px;
  margin-bottom: 20px;
}
.project-item {
  background: #fcfcfc;
  border-radius: 15px;
  border: 1px solid #B99B4720;
  padding: 26px 20px 20px 20px;
}
.project-item h3 {
  color: #264653;
}


/* BUTTONS (Secondary/Other) ----------------- */
.btn-secondary, .btn {
  display: inline-flex;
  align-items: center;
  border: 2px solid #B99B47;
  background: #fff;
  color: #B99B47;
  padding: 11px 23px;
  border-radius: 32px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus, .btn:hover, .btn:focus {
  background: #B99B47;
  color: #fff;
  box-shadow: 0 2px 14px 0 #B99B4720;
}

/* FOOTER ----------------------------------- */
footer {
  background: #264653;
  color: #fff;
  padding: 48px 0 18px 0;
  border-radius: 28px 28px 0 0;
  margin-top: 60px;
  box-shadow: 0 -3px 24px 0 #26465308;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #E9C46A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-copy {
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.7;
  text-align: center;
}
@media (max-width: 640px) {
  footer {
    padding: 26px 0 9px 0;
    border-radius: 12px 12px 0 0;
  }
  .footer-menu {
    gap: 16px;
  }
}

/* CONTACT DETAILS and LISTS ----------------- */
.contact-details,
.trust-section ul,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-details li, .service-list li, .trust-section ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  color: #222;
}
.contact-details img, .service-list img, .trust-section ul img {
  width: 26px;
  height: 26px;
}
.trust-section {
  margin-bottom: 20px;
}

/* MODAL AND OVERLAY for COOKIE BANNER ------- */
.cookie-consent-banner {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8e2;
  border-top: 2.5px solid #B99B47;
  box-shadow: 0 -3px 16px #B99B4749;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 40px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform 0.4s, opacity 0.4s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  color: #222;
  flex: 1 1 320px;
  margin-right: 14px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-end;
}
.cookie-btn {
  background: #B99B47;
  color: #fff;
  border: none;
  border-radius: 21px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.secondary {
  background: #fff;
  color: #B99B47;
  border: 2px solid #B99B47;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E9C46A;
  color: #fff;
  box-shadow: 0 0.5px 8px 0 #B99B4722;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #F5E7BB;
  color: #B99B47;
}
@media (max-width: 900px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 24px 14px 16px 16px;
    gap: 18px;
  }
  .cookie-banner-actions {
    gap: 10px;
  }
}

/* COOKIE SETTINGS MODAL --------------------- */
.cookie-modal-overlay {
  display: none;
}
.cookie-modal-overlay.active {
  display: flex;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38, 70, 83, 0.47);
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 36px #26465327;
  padding: 36px 36px 28px 36px;
  width: 98vw;
  max-width: 490px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeInModal 0.32s cubic-bezier(0.2,1,0.3,1);
}
@keyframes fadeInModal {
  from {transform: translateY(60px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  color: #264653;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #264653;
}
.cookie-modal-toggle {
  width: 36px;
  height: 21px;
  border-radius: 14px;
  background: #E9C46A;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.cookie-modal-toggle[aria-checked="true"] {
  background: #B99B47;
}
.cookie-modal-toggle:focus {
  outline: 2px solid #264653;
}
.cookie-modal-toggle::before {
  content: '';
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px #b99b4720;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.21s;
}
.cookie-modal-toggle[aria-checked="true"]::before {
  left: 17px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #B99B47;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

/* MISC. TEXT SECTIONS ----------------------- */
.text-section {
  margin-bottom: 32px;
}
.text-section h2 {
  margin-bottom: 14px;
}
.text-section ul {
  margin-bottom: 10px;
}
.text-section strong {
  display: block;
  color: #B99B47;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
}

/* MISC. RESPONSIVE TUNING ------------------- */
@media (max-width: 700px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .service-grid,
  .feature-grid,
  .project-list,
  .content-grid,
  .card-container {
    gap: 13px;
  }
  .feature-item, .service-tile, .project-item, .card {
    padding: 15px 8px 14px 12px;
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 24px 4px;
    margin-bottom: 36px;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 14px 8px;
    max-width: 98vw;
    min-width: unset;
    border-radius: 9px;
  }
  .testimonial-meta {
    font-size: 0.94rem;
  }
}

/* ANIMATIONS FOR BUTTONS/MICROINTERACTIONS -- */
.btn-primary, .btn-secondary, .btn, .cookie-btn {
  transition: background 0.24s, color 0.2s, box-shadow 0.23s, transform 0.14s;
}
.btn-primary:active, .btn-secondary:active, .btn:active, .cookie-btn:active {
  transform: translateY(1px) scale(0.97);
}

/* ACCESSIBILITY FOCUSED STATES -------------- */
a:focus, .btn-primary:focus, .btn:focus, .cookie-btn:focus, header nav a:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
  position: relative;
}

/* VISUAL REFINEMENTS FOR PREMIUM APPEAL ----- */
.feature-item, .service-tile, .project-item, .card, .testimonial-card, .faq-item, .cookie-modal {
  box-shadow: 0 3px 20px 0 #E9C46A0B, 0 0.5px 3px 0 #26465310;
  border-radius: 18px;
}

/* SPACING ENFORCEMENT (20px min everywhere) -- */
.feature-item, .service-tile, .project-item, .card, .testimonial-card, .faq-item {
  margin-bottom: 20px;
}
.section, .content-wrapper, .feature-grid, .service-grid, .card-container, .testimonial-slider, .testimonial-list, .project-list, .content-grid {
  margin-bottom: 24px;
}

/* END OF CSS */
