/* 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,
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: inherit; vertical-align: baseline; box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #232323;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
img {
  max-width: 100%; display: block;
}
a {text-decoration: none; color: inherit; transition: color 0.2s cubic-bezier(.53,1.62,.47,-0.13);}
ul,ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
:focus {outline: 2px solid #B1A374; outline-offset: 2px;}

/* BRAND COLORS */
:root {
  --brand-primary: #1A2328;
  --brand-secondary: #B1A374;
  --brand-accent: #E6E6E6;
  --vibrant-electric: #EE216C; /* Highlight electric pink */
  --vibrant-turquoise: #19E5DA;
  --vibrant-yellow: #FFE958;
  --vibrant-blue: #2979FF;
  --neutral-dark: #222326;
  --neutral-light: #fafafc;
  --danger: #DA194C;
  --success: #25D366;
  --shadow: 0 6px 24px 0 rgba(30,41,59,0.10), 0 1.5px 3px 0 rgba(30,41,59,0.05);
}

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Playfair+Display:wght@700;900&display=swap');

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--brand-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
@media (min-width:768px){
  h1, .h1 {font-size: 3rem;}
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--vibrant-electric);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h4, .h4 {font-family: 'Montserrat', sans-serif; font-size:1rem; font-weight:700; color: var(--brand-primary);}

p, li, span, a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.subheadline {
  color: var(--vibrant-turquoise);
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-weight: 700;
}
strong {
  color: var(--brand-primary);
  font-weight: 900;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LAYOUT SECTIONS & SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width:768px){
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--neutral-light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 270px;
  max-width: 380px;
  flex: 1 1 280px;
  transition: box-shadow .22s cubic-bezier(.55,1.2,.19,.84), transform .2s cubic-bezier(.52,1.12,.45,-0.27);
}
.card:hover {
  box-shadow: 0 14px 32px 0 rgba(250,30,113,0.08), 0 4px 10px 0 rgba(19,231,235,0.09);
  transform: translateY(-4px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width:768px){
  .content-grid {flex-direction: column;}
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap:20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 20px 26px 20px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow .18s, transform .19s;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 8px 30px 0 rgba(42,130,250,0.09);
  transform: translateY(-4px) scale(1.025);
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 20px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--neutral-light);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 480px;
  color: #111116;
  font-size: 1rem;
  transition: box-shadow .20s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(42,130,250,0.10);
  transform: scale(1.025);
}
.testimonial-card p {
  color: #1A2328;
  font-size: 1rem;
}
.testimonial-name {
  color: var(--vibrant-electric);
  font-weight: 700;
  font-size: 0.98rem;
}
.rating-summary {
  margin-top: 14px;
  font-size: 1.06rem;
  color: var(--brand-primary);
  font-weight: 700;
  text-align:left;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(90deg, var(--brand-accent) 70%, var(--vibrant-turquoise) 100%);
  padding-top: 48px; padding-bottom: 48px;
  margin-bottom: 50px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero .btn-primary {margin-top: 20px;}

@media (min-width: 768px) {
  .hero h1 {font-size: 3rem}
  .hero .content-wrapper {gap: 24px;}
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(26,35,40,0.07);
  position: relative;
  z-index: 1002;
}
header .container {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.logo img {
  height: 45px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 18px;
}
.main-nav a {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 8px 10px 8px 10px;
  border-radius: 8px;
  transition: background .17s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vibrant-electric);
  color: #fff;
  text-decoration: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--vibrant-electric);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 28px;
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 1.5px 12px 0 rgba(238,33,108,0.11);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, transform .15s, box-shadow .16s;
  margin-left: 22px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  transform: scale(1.045);
  box-shadow: 0 5px 16px rgba(224,184,58,0.14);
}

header .btn-primary {
  margin-left: auto;
}

/* BURGER MENU -- HIDDEN ON DESKTOP */
.mobile-menu-toggle {
  font-size: 2.1rem;
  color: var(--brand-primary);
  background: var(--vibrant-electric);
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 16px;
  box-shadow: 0 1px 8px rgba(238,33,108,0.07);
  z-index: 1010;
  transition: background .14s, color .16s, transform .17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vibrant-blue);
  color: #fff;
  transform: scale(1.08);
}
@media (min-width:1024px){
  .mobile-menu-toggle {display:none;}
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 1005;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(102deg, var(--vibrant-electric) 60%, var(--vibrant-turquoise) 96%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.8,1.63,.48,-0.26), opacity .28s cubic-bezier(.83,1.4,.39,1), box-shadow .18s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 0 40px 6px rgba(41,121,255,0.11);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  right: 28px;
  top: 30px;
  cursor: pointer;
  z-index: 1007;
  transition: color .16s, transform .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
  transform: rotate(8deg) scale(1.11);
}
.mobile-nav {
  margin-top: 74px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 0 10px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #232323;
}

@media (min-width:1024px){
  .main-nav { display: flex !important; }
  .mobile-menu { display: none !important; }
}
@media (max-width:1023px){
  .main-nav { display:none !important; }
}

/* FOOTER */
footer {
  background: var(--brand-accent);
  color: var(--brand-primary);
  margin-top: 80px;
  border-top: 2px solid var(--vibrant-electric);
}
footer .container {
  padding: 32px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items:center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--vibrant-electric);}
.small-print {
  font-size: 0.92rem;
  color: #666;
  text-align: center;
}

/* SERVICE/SPECIAL CARDS & LISTS */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 20px 26px 20px;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.service-item h3 {
  color: var(--vibrant-electric);
  margin-bottom: 10px;
}
.service-item:hover {
  box-shadow: 0 2px 18px 0 rgba(41,121,255,0.15);
  transform: scale(1.025);
}
@media (max-width: 900px) {
  .service-list { flex-direction: column; gap: 18px; }
}

/* FORM ELEMENTS (for future contact forms) */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1.5px solid #e8e8ef;
  background: #fafaff;
  color: var(--brand-primary);
  margin-bottom: 18px;
  font-size: 1rem;
  transition: border-color .17s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--brand-secondary);
}
button[type="submit"], .btn-secondary {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 16px;
  background: var(--vibrant-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(41,121,255,0.10);
  transition: background .16s, color .16s, transform .14s, box-shadow .13s;
}
button[type="submit"]:hover, .btn-secondary:hover {
  background: var(--vibrant-turquoise);
  color: var(--brand-primary);
  transform: scale(1.04);
}

/* LISTS */
ul, ol {
  margin-bottom: 16px;
}
ul li:not(:last-child), ol li:not(:last-child) {
  margin-bottom: 9px;
}
.text-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
}
.text-section ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vibrant-electric);
  box-shadow: 0 0 8px #ee216c55;
}
.text-section ul li strong {
  color: var(--vibrant-blue);
}

/* LEGAL PAGES */
.legal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(26,35,40,0.045);
  padding: 40px 20px;
  margin-bottom: 50px;
}
.legal h1, .legal h2, .legal h3 {margin-bottom: 14px;}
.legal .content-wrapper {
  gap: 12px;
}
.legal ul li:before {
  background: var(--vibrant-turquoise);
}

/* THANK YOU PAGE */
.thank-you {
  padding: 60px 20px 40px 20px;
  text-align: center;
}
.thank-you .btn-primary {margin-top: 24px;}

/* CONTACT INFO */
.contact-info {
  padding-top: 36px;
  padding-bottom: 24px;
  background: var(--brand-accent);
  border-radius: 18px;
  margin-bottom: 42px;
}
.contact-info h2 {
  text-align:left;
  color: var(--brand-primary);
}
.contact-info .text-section ul li:before {
  background: var(--brand-secondary);
}

/* RESPONSIVE -- MOBILE FIRST */
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  .container { padding: 0 9px; }
  .about, .features, .services, .thank-you, .legal, .contact-info, .testimonials { padding: 26px 9px; }
  .feature-item, .service-item, .testimonial-card, .card { min-width: 180px; max-width: 100%; }
  .footer-nav {gap:13px;}
}

/* MICRO-INTERACTIONS */
.card, .feature-item, .service-item, .testimonial-card {
  will-change: transform, box-shadow;
  cursor: pointer;
  transition: box-shadow .19s, transform .20s;
}
.card:active, .feature-item:active, .service-item:active, .testimonial-card:active {
  transform: scale(.99) translateY(2px);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--neutral-dark);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 26px;
  box-shadow: 0 -2px 20px 0 rgba(41,121,255,0.07);
  z-index: 2020;
  gap: 30px;
  border-top: 5px solid var(--vibrant-electric);
  font-size: 0.98rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner-message {
  max-width: 70vw;
  line-height: 1.5;
  font-size: 1.08rem;
}
@media(max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 12px 13px 12px;
    gap: 12px;
    font-size: 0.98rem;
  }
}
.cookie-banner-actions {
  display: flex; flex-direction: row; gap: 18px; align-items: center;
}
.cookie-banner .btn-cookie {
  padding: 11px 20px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--vibrant-turquoise);
  color: var(--neutral-dark);
  border: none;
  box-shadow: 0 2.5px 7px rgba(25,229,218,0.09);
  cursor: pointer;
  margin-right: 0;
  margin-left: 0;
  transition: background 0.17s, color 0.13s, transform .15s;
}
.cookie-banner .btn-cookie.accept-all {
  background: var(--vibrant-electric);
  color: #fff;
}
.cookie-banner .btn-cookie.reject-all {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .btn-cookie.settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: scale(1.06);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed; left:0;top:0;right:0;bottom:0;
  background: rgba(26,34,40,0.45);
  z-index: 2025;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: var(--neutral-dark);
  border-radius: 22px;
  box-shadow: 0 6px 36px 0 rgba(238,33,108,0.12), 0 1.5px 3px 0 rgba(30,41,59,0.07);
  min-width: 326px; max-width: 97vw;
  padding: 38px 32px 32px 32px;
  position: relative;
  animation: modalIn .3s cubic-bezier(.8,1.52,.24,.82);
}
@keyframes modalIn { from {transform: scale(0.95) translateY(40px);} to {transform: scale(1) translateY(0);} }
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.38rem;
  color: var(--vibrant-electric);
  margin-bottom: 16px;
}
.cookie-modal .categories {
  margin-bottom:22px;
}
.cookie-modal .cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom:14px;
}
.cookie-modal .cookie-category-label {
  flex:1;
  font-weight: 700;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--vibrant-electric);
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-toggle-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 21px;
  top: 16px;
  background: transparent;
  color: var(--vibrant-electric);
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: color .155s, background .13s, transform .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--vibrant-blue);
  background: #F2F4F8;
  transform: scale(1.08);
}

/* ELEVATE BRAND + VIBRANT EFFECTS */
::-webkit-scrollbar {width:10px; background: #eee;}
::-webkit-scrollbar-thumb {background: linear-gradient(90deg, var(--vibrant-electric), var(--vibrant-blue)); border-radius: 10px;}

/* UTILITY CLASSES */
.mt-20 {margin-top: 20px;}
.mt-32 {margin-top: 32px;}
.mb-20 {margin-bottom: 20px;}
.mb-32 {margin-bottom: 32px;}
.pt-20 {padding-top: 20px;}
.pt-32 {padding-top: 32px;}
.text-center {text-align: center;}
.text-left {text-align: left;}

/* HIDE SCROLL WHEN MODAL OPEN*/
body.modal-open {overflow: hidden;}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}
