/* ---- 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,main,footer,header,section,nav,article,aside,figure,figcaption {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ---- BRAND COLORS ---- */
:root {
  --primary: #253239;
  --secondary: #97B9B8;
  --accent: #F5ECEA;
  --white: #fff;
  --black: #222;
  --highlight: #FF6984;
  --shadow: rgba(37, 50, 57, 0.08);
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--primary);
  background-color: var(--accent);
  min-height: 100vh;
  letter-spacing: 0.01em;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul li, ol li { font-size: 1rem; line-height: 1.8; }
strong { font-weight: bold; }

/* ---- GENERAL CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ---- HEADER & NAVIGATION ---- */
header {
  background: var(--white);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  justify-content: space-between;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--primary);
  position: relative;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--white);
}
.cta-btn {
  background: var(--highlight);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 16px var(--shadow);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, transform 0.16s;
  margin-left: 16px;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.03);
}

/* ---- MOBILE MENU ---- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: auto;
  z-index: 51;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--accent);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 0 2px 20px rgba(37,50,57,.18);
  transform: translateX(-100vw);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--primary);
  align-self: flex-end;
  margin: 20px 22px 0 0;
  cursor: pointer;
  z-index: 101;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--highlight);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin-top: 44px;
  padding: 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--primary);
  padding: 10px 0;
  border-radius: 6px;
  width: 100%;
  transition: background .18s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}

/* ---- HERO SECTIONS ---- */
.hero {
  background: var(--secondary);
  color: var(--white);
  width: 100%;
  padding: 64px 0 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 60px;
}
.hero h1, .hero p {
  color: var(--white);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero .cta-btn {
  margin-top: 24px;
  background: var(--white);
  color: var(--primary);
  font-size: 1.1rem;
  border: 2px solid var(--primary);
  transition: background 0.19s, color 0.19s, border 0.19s;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--primary);
  color: var(--white);
  border-color: var(--white);
}

/* ---- SECTION LAYOUTS ---- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section.cta {
  background: var(--highlight);
  color: var(--white);
  border-radius: 36px;
  box-shadow: 0 2px 24px var(--shadow);
  align-items: center;
  margin-bottom: 40px;
}
section.cta h2,
section.cta p,
section.cta .cta-btn {
  color: var(--white);
}
section > .container > .content-wrapper {
  gap: 32px;
}

/* ---- FLEX PATTERN CLASSES ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 2px 16px var(--shadow);
  margin-bottom: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px rgba(37,50,57,.14);
  transform: translateY(-4px) scale(1.02);
}
.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;
  align-items: center;
  gap: 20px;
  background: var(--white);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 2px 24px var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  font-size: 1.08rem;
  flex-direction: row;
}
.testimonial-card p { flex: 1 1 0; margin: 0; }
.testimonial-card span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  color: var(--secondary);
  margin-left: 12px;
  margin-right: 8px;
}
.testimonial-card img {
  width: 32px; height: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ---- FEATURE & SERVICE GRID ---- */
.feature-grid, .service-grid, .service-list, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 24px 0;
  justify-content: flex-start;
}
.feature-grid > div, .service-grid > div, .service-list > div {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow);
  flex: 1 1 220px;
  min-width: 225px;
  max-width: 325px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 0;
}
.feature-grid > div:hover, .service-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 4px 28px rgba(37,50,57,.11);
  transform: scale(1.035);
}
.feature-grid img, .service-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.service-grid .service-price {
  font-family: 'Montserrat', sans-serif;
  color: var(--highlight);
  font-weight: 700;
  margin: 14px 0 8px 0;
  font-size: 1.09rem;
}

/* ---- CASE STUDIES ---- */
.case-study-summary {
  background: var(--accent);
  border-radius: 12px;
  padding: 24px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--shadow);
}
.case-study-summary h3 {
  color: var(--highlight);
  font-size: 1.18rem;
  margin-bottom: 8px;
}

/* ---- FAQ ---- */
.faq {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 24px; margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq h3 {
  color: var(--primary);
  margin-bottom: 3px;
  font-size: 1.09rem;
  font-weight: 600;
}
.faq p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--primary);
}

/* ---- TABLES / PRICING ---- */
.pricing-table {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 16px var(--shadow);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tbody tr:nth-child(even) {
  background: var(--accent);
}
.pricing-table tbody tr:hover {
  background: var(--highlight);
  color: var(--white);
  transition: background 0.16s, color 0.14s;
}

/* ---- TEXT SECTIONS / UL ---- */
.text-section {
  background: var(--accent);
  border-radius: 12px;
  padding: 28px 22px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px var(--shadow);
}
.text-section ul {
  margin-bottom: 10px;
  padding-left: 20px;
}
.text-section ul li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 18px;
  font-size: 1rem;
}
.text-section ul li:before {
  content: '⏺';
  color: var(--secondary);
  font-size: .7em;
  position: absolute;
  left: 0;
  top: 2px;
}
.text-section strong {
  color: var(--highlight);
  font-weight: 700;
}

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  background: var(--white);
  border-radius: 16px;
  min-height: 70px;
  margin: 14px 0 0 0;
  padding: 18px 14px;
  color: var(--secondary);
  font-size: 0.99rem;
  font-style: italic;
}

/* ---- FOOTER ---- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 48px 0 24px 0;
  font-size: 1rem;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: 64px;
}
footer .container { flex-direction: row; gap: 32px; }
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--highlight);
  color: var(--white);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  font-size: 1rem;
  margin-left: auto;
  text-align: right;
}
.contact-info img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}

/* ---- THANK YOU SECTION ---- */
.thank-you-message, .next-steps {
  background: var(--accent);
  border-radius: 12px;
  padding: 26px 20px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px var(--shadow);
}
.next-steps a {
  color: var(--highlight);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.12s;
}
.next-steps a:hover {
  color: var(--secondary);
}

/* ---- LINK COLORS AND EFFECTS ---- */
a {
  color: var(--highlight);
  transition: color 0.14s;
}
a:hover, a:focus {
  color: var(--secondary);
}

/* ---- BUTTONS ---- */
button, .cta-btn, input[type="submit"] {
  outline: none;
}
button:active, .cta-btn:active, input[type="submit"]:active {
  outline: none;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px 24px 32px;
  z-index: 200;
  box-shadow: 0 -2px 16px var(--shadow);
  animation: slidein-banner 0.5s cubic-bezier(.8,.02,.32,1);
}
@keyframes slidein-banner {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  flex: 1 1 0;
  font-size: 1rem;
  margin-right: 22px;
  color: var(--accent);
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-banner .cookie-accept {
  background: var(--highlight);
  color: var(--white);
}
.cookie-banner .cookie-accept:hover { background: var(--secondary); color: var(--white); }
.cookie-banner .cookie-decline {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .cookie-decline:hover { background: var(--secondary); color: var(--white); }
.cookie-banner .cookie-settings {
  background: none;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
}
.cookie-banner .cookie-settings:hover {
  background: var(--white);
  color: var(--primary);
}

/* ---- COOKIE MODAL ---- */
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(37,50,57,0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 201;
  animation: modal-fadein 0.27s ease;
}
@keyframes modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  padding: 40px 28px 30px 28px;
  border-radius: 20px;
  box-shadow: 0 2px 32px var(--shadow), 0 2px 6px rgba(37,50,57,.14);
  width: 95%;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: bouncein .33s cubic-bezier(.63,1.56,.54,1.01);
}
@keyframes bouncein {
  0% { transform: scale(0.85); opacity: .6; }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--secondary);
  border-radius: 7px;
  transition: border 0.14s, background 0.13s;
  margin-right: 4px;
  background: var(--accent);
}
.cookie-category input[type='checkbox']:checked {
  background: var(--secondary);
  border: 2px solid var(--secondary);
  position: relative;
}
.cookie-category input[type='checkbox']:checked:after {
  content: '\2714';
  color: var(--white);
  font-size: 1rem;
  position: absolute;
  left: 3px; top: -1px;
}
.cookie-modal .cookie-essential label {
  color: var(--secondary);
  font-style: italic;
  opacity: 0.65;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-save {
  background: var(--highlight);
  color: var(--white);
  border-radius: 22px;
  border: none;
  padding: 8px 28px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal .cookie-save:hover {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal .cookie-close {
  background: none;
  color: var(--primary);
  border: 2px solid var(--secondary);
  border-radius: 22px;
  padding: 8px 20px;
  font-weight: bold;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover {
  background: var(--accent);
}

/* ---- RESPONSIVE STYLES ---- */
@media (max-width: 1200px) {
  .feature-grid > div, .service-grid > div, .service-list > div {
    min-width: 160px;
    max-width: 49%;
  }
  .footer-nav { gap: 12px; }
}
@media (max-width: 992px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    padding-right: 8px;
    padding-left: 8px;
  }
  .footer-nav { gap: 8px; font-size: 0.96rem; }
  .container { padding: 0 10px; }
  .contact-info span { font-size: 0.97rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 40px 0 28px 0; }
  section { padding: 32px 8px; margin-bottom: 36px; }
  .footer-nav { flex-direction: column; gap: 10px; row-gap: 5px; align-items: flex-start; }
  .container { padding: 0 5vw; }
  .content-wrapper { gap: 18px; }
  .feature-grid, .service-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .service-grid > div, .service-list > div {
    max-width: 100%; min-width: 0;
    padding: 18px 12px;
  }
  .testimonial-card { flex-direction: column; gap: 11px; align-items: flex-start; }
  .cookie-banner { flex-direction: column; padding: 18px 9vw; gap: 12px; }
  .cookie-banner p { margin-right: 0; }
  .cookie-modal { padding: 30px 10px 18px 10px; }
}
@media (max-width: 600px) {
  .contact-info { align-items: flex-start; text-align: left; }
  .footer-nav { gap: 8px; }
  footer .container { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero .container { padding: 0 5vw; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.14rem; }
  .cta-btn, .hero .cta-btn { font-size: 0.98rem; padding: 10px 15px; }
  .feature-grid > div, .service-grid > div, .service-list > div, .card {
    padding: 13px 6px;
  }
}

/* ---- ARTISTIC/DECORATIVE ELEMENTS ---- */
h1, h2 {
  position: relative;
  z-index: 0;
  isolation: isolate;
}
h1::after, h2::after {
  content: '';
  display: block;
  position: absolute;
  left: -18px;
  top: 85%;
  width: 68px;
  height: 11px;
  background: var(--highlight);
  border-radius: 12px;
  opacity: 0.23;
  z-index: -1;
}
.hero h1::after, section.cta h2::after {
  background: var(--white);
  opacity: 0.28;
}

.feature-grid > div::before, .service-grid > div::before {
  content: '';
  display: block;
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  background: var(--highlight);
  border-radius: 50%;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

.card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 38px;
  height: 40px;
  background: var(--secondary);
  opacity: 0.12;
  border-radius: 60% 30% 48% 22%;
  z-index: 0;
}

/* ---- INPUTS (if needed in forms) ---- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 12px;
  border: 2px solid var(--secondary);
  border-radius: 9px;
  background: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--highlight);
}

/* ==== SCROLLBAR STYLES (for artistic effect, optional) ==== */
body::-webkit-scrollbar {
  width: 12px;
  background: var(--accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

/* ==== TRANSITIONS ===== */
*, *:before, *:after {
  transition-property: box-shadow, background, color, border, transform;
  transition-duration: 0.13s;
}

/* ---- NO GRID (FLEX-ONLY) ENFORCED ---- */
/* No display:grid or grid-* or columns used anywhere in this file. */
