/* --- RESET & NORMALIZATION --- */
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, main, 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;
}
body {
  line-height: 1.6;
  background: #F6F3EE;
  color: #2A2C3C;
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #CFA15C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,1,.7,.9);
}
a:hover, a:focus {
  color: #FF3B3B;
}
ul, ol {
  list-style: none;
}
button, .cta-btn {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* --- CUSTOM FONT FAMILY (if available; fallback to Playfair/Lato CDN/web safe) --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2A2C3C;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
section h2 {
  color: #CFA15C;
}

/* --- TYPOGRAPHY --- */
p, li, div, .content-wrapper, .text-section {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: #2A2C3C;
}
strong {
  color: #2A2C3C;
}

/* --- SPACING & FLEX LAYOUTS --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: flex-start;
  gap: 20px;
  background: #FFF;
  padding: 32px 24px 20px 24px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(207, 161, 92, 0.12), 0 1.5px 3.5px 0 rgba(44, 44, 44, 0.07);
  border-left: 6px solid #CFA15C;
  max-width: 500px;
  transition: transform 0.17s cubic-bezier(.7,1.4,.6,1), box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 10px 24px 0 rgba(207,161,92,0.20);
  border-left-color: #FF3B3B;
}
.feature-item, .features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Service Cards */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(207,161,92,0.10), 0 1.5px 3.5px 0 rgba(44,44,44,0.07);
  padding: 32px 28px 22px 28px;
  min-width: 235px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s cubic-bezier(.44,1,.6,.9), transform 0.18s;
  border: 1.5px solid #ECE5D8;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 10px 28px 0 rgba(207,161,92,0.17);
  z-index: 1;
  border-color: #CFA15C;
  transform: scale(1.025) translateY(-4px);
}
.service-card h3, .service-card h2 {
  font-size: 1.26rem;
  color: #2A2C3C;
  margin-bottom: 8px;
}
.service-price {
  font-weight: 700;
  font-size: 1.16rem;
  color: #FF3B3B;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 8px 0 rgba(42,44,60,0.04);
  position: sticky;
  top: 0;
  z-index: 20;
  padding-bottom: 0px;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 20px 20px 20px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #2A2C3C;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 7px;
  position: relative;
  transition: color 0.18s, background 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus, .main-nav ul li.active a {
  background: #CFA15C;
  color: #FFF;
}
header img {
  height: 38px;
  width: auto;
  margin-right: 10px;
}

/* Call-to-action Button */
.cta-btn {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.10rem;
  padding: 12px 32px;
  background-color: #FF3B3B;
  color: #FFF !important;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(255, 59, 59, 0.18);
  border: none;
  text-transform: uppercase;
  margin-left: 18px;
  transition: background 0.18s cubic-bezier(.4,1,.7,.9), box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.03em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #CFA15C;
  color: #FFF!important;
  box-shadow: 0 8px 24px #CFA15C55;
  transform: scale(1.04) translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg, #fff 65%, #FF3B3B 200%);
  min-height: 370px;
  display: flex;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
  border-bottom: 2.5px solid #EDF1F5;
}
.hero .container .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #2A2C3C;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 16px;
}

/* --- FEATURES SECTION --- */
.features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}
.features ul li {
  font-size: 1rem;
  color: #2A2C3C;
  background: #FFF6EC;
  border-radius: 8px;
  padding: 14px 20px;
  border-left: 4px solid #FF3B3B;
  position: relative;
  box-shadow: 0 2px 10px rgba(255,59,59,0.07);
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.features ul li strong {
  color: #CFA15C;
}

/* --- ABOUT, POLICY, CONTACT, ETC --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.text-section ul li {
  font-size: 1rem;
  color: #2A2C3C;
  background: #FFE8D2;
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 12px;
  border-left: 4px solid #CFA15C;
  box-shadow: 0 2px 10px rgba(207,161,92,0.10);
}
.text-section ul li strong {
  color: #FF3B3B;
}
.text-section a {
  color: #FF3B3B;
  text-decoration: underline;
}
.text-section a:hover {
  color: #2A2C3C;
}

/* --- FAQ PAGE --- */
.faq ul li {
  margin-bottom: 28px;
  padding: 20px 16px 10px 18px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(44,44,44,0.03);
}
.faq ul li strong {
  font-size: 1.09rem;
  color: #CFA15C;
}
.faq-contact {
  background: #FFF6EC;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(207,161,92,0.07);
}
.faq-contact h2 {
  color: #FF3B3B;
}

/* --- FOOTER --- */
footer {
  background: #2A2C3C;
  padding: 40px 0 0 0;
  color: #FFF;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 18px;
}
.footer-nav a {
  color: #CFA15C;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color 0.18s;
  letter-spacing: 0.03em;
}
.footer-nav a:hover {
  color: #FF3B3B;
}
.footer-info {
  display: flex;
  justify-content: center;
  padding: 12px 0 22px 0;
  font-size: 0.95rem;
  color: #FFF;
}

/* --- GALLERY PAGE --- */
.gallery .features ul li {
  background: #ECF6F2;
  border-left: 5px solid #CFA15C;
}

/* --- TESTIMONIALS --- */
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.client-name {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #CFA15C;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: .02em;
}

/* --- CTA PROMPT --- */
.contact-prompt, .cta {
  background: #FFFAF6;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 4px 18px 0 rgba(255,59,59,0.09);
}
.contact-prompt .content-wrapper, .cta .content-wrapper {
  align-items: center;
  gap: 18px;
}
.contact-prompt h2, .cta h2 {
  color: #FF3B3B;
}

/* --- POLICY & INFO PAGES --- */
.policy, .confirmation {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(42,44,60,0.06);
}
.policy h1, .confirmation h1 {
  color: #CFA15C;
}

/* --- CONFIRMATION (THANK YOU) --- */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.confirmation .cta-btn {
  margin: 18px auto 0 auto;
}

/* --- CONTACT DETAILS --- */
.contact-details p {
  margin-bottom: 10px;
}
.contact-details a {
  color: #FF3B3B;
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #2A2C3C;
  color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 24px;
  box-shadow: 0 -4px 22px 0 rgba(42,44,60,0.10);
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(.7,1,.5,1), opacity 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-btn,
.cookie-banner .cookie-prefs-btn {
  margin-left: 10px;
  background: #CFA15C;
  color: #2A2C3C;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-btn:hover {
  background: #FF3B3B;
  color: #FFF;
}
.cookie-banner .cookie-prefs-btn {
  background: #FF3B3B;
  color: #FFF;
}
.cookie-banner .cookie-prefs-btn:hover {
  background: #CFA15C;
  color: #2A2C3C;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 10000;
  background: #FFF;
  color: #2A2C3C;
  border-radius: 16px;
  padding: 38px 24px 28px 24px;
  box-shadow: 0 8px 36px 0 rgba(207,161,92,0.21);
  min-width: 330px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.36s cubic-bezier(.7,1,.5,1), opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 120%) scale(0.94);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #FF3B3B;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 700;
  margin-right: 10px;
  color: #2A2C3C;
}
.cookie-modal .cookie-switch {
  margin-right: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
/* toggle switch style (for cookie toggles) */
.switch {
  position: relative;
  width: 38px; height: 22px;
  display: inline-block;
}
.switch input { display: none; }
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ECE5D8;
  border-radius: 11px;
  transition: 0.2s;
}
.switch .slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background: #FFF;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px #CFA15C90;
}
.switch input:checked + .slider {
  background: #FF3B3B;
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
  background: #CFA15C;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  background: #FF3B3B;
  color: #FFF;
  border-radius: 11px;
  padding: 8px 20px;
  font-weight: 700;
  border: none;
}
.cookie-modal .cookie-btn.secondary {
  background: #ECE5D8;
  color: #2A2C3C;
}

.cookie-modal .close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  font-size: 1.5rem;
  color: #FF3B3B;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

/* --- HAMBURGER MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 17px;
  background: #CFA15C;
  color: #FFF;
  font-size: 2.1rem;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  border: none;
  outline: none;
  z-index: 31;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 2px 15px #CFA15C25;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #FF3B3B;
  color: #FFF;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  height: 100dvh;
  width: 100vw;
  background: #2A2C3C;
  color: #FFF;
  z-index: 50;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.7,1,.6,1.1);
  padding: 0;
  box-shadow: 0 0 42px 0 #2227;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FF3B3B;
  border: none;
  color: #FFF;
  font-size: 2rem;
  border-radius: 10px;
  margin: 18px 18px 0 auto;
  cursor: pointer;
  padding: 2px 10px 2px 10px;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: #CFA15C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 32px 0 0 40px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.35rem;
  text-transform: uppercase;
  padding: 10px 0;
  transition: color 0.16s, background 0.15s;
  border-radius: 8px;
  letter-spacing: .05em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF3B3B;
  color: #FFF;
}

.mobile-menu {
  visibility: hidden;
  pointer-events: none;
  opacity: 0.98;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}


/* --- DYNAMIC EFFECTS & MICRO-ANIMATIONS --- */
.service-card, .testimonial-card, .cta-btn, .footer-nav a, .main-nav ul li a {
  transition: box-shadow 0.22s, transform 0.18s, background 0.15s, color 0.15s;
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* --- MEDIA QUERIES FOR RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
    padding: 0 14px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 10px 10px 10px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 38px;
  }
  .service-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .main-nav ul,
  .main-nav .cta-btn {
    display: none !important;
  }
  .main-nav {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 0;
    padding: 20px 10px 12px 10px;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  .hero .container, .service-grid, .features ul, .content-grid, .testimonial-card, .card-container, .text-image-section {
    flex-direction: column !important;
    align-items: stretch;
    gap: 16px !important;
  }
  .service-card, .testimonial-card {
    min-width: 96vw;
    max-width: 98vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
    padding: 12px 8px;
  }
  .container {
    padding: 0 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.28rem; }
  .hero { min-height: 170px; }
  .service-card { padding: 19px 7px 12px 12px; }
  .testimonial-card { padding: 14px 7px 12px 12px; }
  .cookie-modal { min-width: 96vw; }
}

/* --- VIBRANT ACCENTS & INTERACTIONS --- */
::selection {
  background: #FF3B3B22;
}
::-webkit-scrollbar {
  width: 10px;
  background: #ECE5D8;
}
::-webkit-scrollbar-thumb {
  background: #CFA15C;
  border-radius: 12px;
}

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