/* =========================================================================
   CSS RESET & BASE STYLES (Normalize + Box Model)
   ========================================================================= */
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;
}
html { box-sizing: border-box; font-size: 16px; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F6F6;
  color: #1B2733;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  transition: background 0.25s;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1B4965;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #33688f; outline: none; }
ul, ol { padding-left: 1.25em; margin-bottom: 16px; }
li { margin-bottom: 8px; }

/* =========================================================================
   BRAND COLORS & TYPOGRAPHY (Artistic Flair)
   ========================================================================= */
:root {
  --color-primary: #1B4965;
  --color-secondary: #5FA8D3;
  --color-accent: #F6F6F6;
  --color-deep: #13293D;
  --color-action: #FFD166;
  --color-pink: #FF8DCB;
  --color-success: #64D79C;
  --color-light: #fff;
  --color-border: #DDE7F1;
  --text-dark: #1B2733;
  --text-light: #F6F6F6;
  --shadow-card: 0 4px 28px 0 rgba(30, 62, 82, 0.13);
  --shadow-header: 0 4px 24px 0 rgba(91,151,186,0.06);
  --radius-big: 22px;
  --radius: 12px;
  --radius-small: 6px;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.05rem; }
.subtitle {
  font-family: var(--font-body);
  color: var(--color-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 14px;
}
p, .container p {
  font-size: 1.03rem;
  color: var(--text-dark);
  line-height: 1.7;
}
strong { color: var(--color-primary); font-weight: 700; }

/* =========================================================================
   LAYOUT: Section, Container, Content-Wrapper
   ========================================================================= */
main { width: 100%; min-height: 70vh; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* =========================================================================
   HEADER & NAV (Mobile Responsive & Artistic Style)
   ========================================================================= */
header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: var(--color-light);
  box-shadow: var(--shadow-header);
  z-index: 40;
}
.logo img { height: 50px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--color-primary);
  padding: 11px 16px;
  border-radius: var(--radius-big);
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  background: transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-light);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-big);
  padding: 13px 28px;
  background: var(--color-action);
  color: var(--color-primary);
  box-shadow: 0 2px 12px 0 rgba(27,73,101,0.07);
  margin-left: 16px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.14s;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
  outline: none;
}
.cta-button.primary {
  background: var(--color-primary);
  color: #fff;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 4px 22px 0 rgba(27,73,101,0.15);
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-pink);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03) rotate(1.5deg);
  box-shadow: 0 4px 22px 0 rgba(27,73,101,0.14);
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, box-shadow 0.22s, color 0.22s;
  z-index: 103;
  box-shadow: 0 2px 12px 0 rgba(27,73,101,0.12);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: #fff;
  outline: none;
}

/* =========================================================================
   MOBILE MENU STYLES & SLIDE ANIMATION
   ========================================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(27, 73, 101, 0.89);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.27,.7,.37,1.65);
  z-index: 102;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 32px;
  background: var(--color-action);
  color: var(--color-primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  text-align: center;
  cursor: pointer;
  z-index: 120;
  box-shadow: 0 3px 11px rgba(27,73,101,0.14);
  transition: background 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-pink);
  color: var(--color-primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 26px;
  gap: 16px;
  margin-left: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: #fff;
  padding: 12px 6px;
  border-radius: var(--radius-big);
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-action);
  color: var(--color-primary);
  outline: none;
}

/* =========================================================================
   HERO & FEATURED SECTIONS (Creative Artistic Styling)
   ========================================================================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 8px;
  width: 100%;
}
.feature {
  flex: 1 1 210px;
  min-width: 210px;
  background: #fff;
  border-radius: var(--radius-big);
  padding: 30px 20px 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 2.5px dashed var(--color-secondary);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, border-color 0.18s;
}
.feature img {
  width: 44px; height: 44px;
  background: var(--color-action);
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 6px;
}
.feature:hover {
  border-color: var(--color-pink);
  box-shadow: 0 7px 28px 0 rgba(95, 168, 211, 0.11);
  transform: translateY(-3px) scale(1.045) rotate(-1.5deg);
}
.features-grid > .feature {
  margin-bottom: 0 !important;
}

/* =========================================================================
   CARDS, SERVICE CARDS, ARTISTIC BORDERS
   ========================================================================= */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 18px;
}
.service-card {
  flex: 1 1 225px;
  min-width: 220px;
  margin-bottom: 20px;
  background: linear-gradient(126deg, #fff, #f8fafd 88%, #f6eaff);
  border: 2.2px solid var(--color-pink);
  border-radius: var(--radius-big);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.24s;
}
.service-card:before {
  content: '';
  position: absolute;
  top: -35px; left: -26px;
  width: 88px; height: 70px;
  background: var(--color-secondary);
  opacity: 0.08;
  border-radius: 44% 33% 66% 55%;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 30px 4px rgba(95,168,211, .19);
  transform: scale(1.038) rotate(-1deg);
}
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 7px;
  color: var(--color-primary);
}
.service-card .price {
  color: var(--color-success);
  font-family: var(--font-display);
  font-size: 1.09rem;
  margin-top: 4px;
  margin-bottom: 2px;
  font-weight: 700;
}

.service-info {
  margin: 6px 0 8px 0;
}
.service-info .price {
  color: var(--color-secondary);
  background: var(--color-light);
  padding: 5px 14px;
  border-radius: var(--radius);
  font-size: 1.06rem;
  font-weight: 700;
  font-family: var(--font-display);
}

/* ========================================================================
   TESTIMONIALS (Card Styles / Color Contrast)
   ======================================================================== */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-big);
  padding: 24px 28px 20px 28px;
  min-width: 260px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-left: 10px solid var(--color-secondary);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.21s, border-color 0.18s, background 0.24s;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #212a31;
  font-family: var(--font-body);
  font-style: italic;
}
.testimonial-card .name {
  font-weight: bold;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.04rem;
}
.testimonial-card .stars {
  color: var(--color-pink);
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  text-shadow: 1px 1.5px 2px rgba(95,168,211,0.12);
}
.testimonial-card:hover {
  background: #FFFAE6;
  border-color: var(--color-action);
  box-shadow: 0 7px 32px 0 rgba(255, 166, 102, 0.13);
  transform: scale(1.027) rotate(1.4deg);
}

/*
  Card containers and alignment patterns ---
*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px !important;
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================================================================
   CONTACT & THANK YOU, BIOS/LISTS
   ========================================================================= */
.contact-info {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 9px 0 9px 0;
  font-size: 1.01rem;
  color: var(--color-primary);
  box-shadow: 0 2px 12px 0 rgba(27,73,101,0.09);
}
.thank-you-message {
  background: #fff7fc;
  border: 2.2px dashed var(--color-pink);
  border-radius: var(--radius-big);
  padding: 40px 30px;
  text-align: center;
  margin: 28px auto 22px auto;
  max-width: 460px;
  box-shadow: 0 4px 18px 0 rgba(255,141,203,0.10);
}

.team-bios {
  list-style-type: disclosure-closed;
  margin-bottom: 20px;
  margin-left: 2px;
}
.team-bios li {
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 1.02rem;
  padding-left: 2px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
  background: #222f3e;
  color: #fff;
  padding: 36px 0 14px 0;
  width: 100%;
  margin-top: 44px;
  box-shadow: 0 -2px 14px 0 rgba(30,62,82,0.11);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 18px;
}
.footer-main img { height: 42px; }
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 1.04rem;
  opacity: 0.92;
  font-family: var(--font-display);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-action);
  color: var(--color-primary);
  outline: none;
}
.footer-contact {
  text-align: center;
  opacity: 0.89;
  font-size: 1.01rem;
  margin-top: 12px;
}
.footer-meta {
  text-align: center;
  font-size: .98rem;
  margin-top: 11px;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

/* =========================================================================
   FORMS & BUTTONS
   ========================================================================= */
input, textarea, select, button {
  font-family: var(--font-body);
  font-size: 1.06rem;
  border: none;
  border-radius: var(--radius);
  outline: none;
}
button {
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.13s;
}
button:active { transform: scale(0.96); }

/* =========================================================================
   COOKIE CONSENT BANNER
   ========================================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 34px 0 rgba(27, 73, 101, 0.13);
  padding: 26px 18px 24px 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  animation: banner-in 0.53s cubic-bezier(.23,.9,.32,1.08);
}
@keyframes banner-in {
  from { transform: translateY(80px); opacity: 0; }
  to {   transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 240px;
  color: var(--color-primary);
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  padding: 11px 22px;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.21s, color 0.21s, box-shadow 0.13s;
  font-weight: 700;
}
.cookie-btn.accept {
  background: var(--color-success);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #eee;
  color: var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-pink);
  color: var(--color-primary);
}
.cookie-btn:focus, .cookie-btn:hover {
  box-shadow: 0 2px 10px 0 rgba(95,168,211,0.09);
  outline: 2px solid var(--color-primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(27, 73, 101, 0.72);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.28s .05s cubic-bezier(.45,1.3,.55,1.01);
}
@keyframes fadein { from { opacity:0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-big);
  max-width: 380px;
  width: 98vw;
  padding: 34px 26px 26px 26px;
  box-shadow: 0 8px 56px rgba(27,73,101,.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-in 0.32s cubic-bezier(.32,1.1,.53,.97);
}
@keyframes modal-in { from { transform:scale(.88) translateY(14px); opacity:0; } to { transform:scale(1) translateY(0); opacity:1; } }
.cookie-modal h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-cat input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: var(--color-success);
  border-radius: 5px;
}
.cookie-cat .cat-label {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 600;
}
.cookie-cat .always-on {
  color: var(--color-success);
  margin-left: 3px;
  font-size: 0.96rem;
}
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

/* =========================================================================
   UTILITY CLASSES & EFFECTS
   ========================================================================= */
.rounded { border-radius: var(--radius-big); }
.bg-accent { background: var(--color-accent); }
.center { text-align: center; align-items: center; justify-content: center; }
.shadowed { box-shadow: var(--shadow-card); }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
strong { font-weight: 700; color: var(--color-primary); }

/* =========================================================================
   MEDIA QUERIES: RESPONSIVE ADJUSTMENTS
   ========================================================================= */
@media (max-width: 1100px) {
  .container { padding: 0 18px; }
  .main-nav { gap: 15px; }
}
@media (max-width: 880px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex !important; }
  header {
    padding: 16px 14px;
  }
  .footer-main, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 11px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.18rem; }
  .features-grid,
  .service-cards,
  .testimonial-grid { flex-direction: column; gap: 18px; }
  .section { padding: 28px 8px; margin-bottom: 36px; }
  .container { padding: 0 7px; }
  .content-wrapper { gap: 15px; }
  .testimonial-card,
  .service-card,
  .feature { min-width: unset; }
}
@media (max-width: 540px) {
  header { padding: 11px 5px; }
  .logo img { height: 36px; }
  .mobile-menu-close { top: 18px; right: 16px; }
  .mobile-nav { margin-left: 13px; }
  .testimonial-card { padding: 13px 10px; }
  .service-card { padding: 14px 8px; }
}
@media (max-width: 530px) {
  .footer-main img { height: 30px; }
}
@media (max-width: 420px) {
  .cookie-banner { flex-direction: column; gap: 13px; }
  .cookie-banner__actions { width: 100%; }
  .footer-contact, .footer-meta { font-size: 0.91rem; }
}

/* === ARTISTIC DETAILS === */
.section {
  background: #fff linear-gradient(105deg, #f6f6f6 70%, #ff8dcb16 100%);
  border-radius: var(--radius-big);
  box-shadow: 0 3px 19px 0 rgba(27, 73, 101, 0.07);
  margin-bottom: 60px;
}
.section:nth-child(even) {
  background: #f6f6fa linear-gradient(122deg, #f6eaff 88%, #fff 100%);
}

/* === MICRO-INTERACTIONS === */
.section, .feature, .service-card, .testimonial-card, .cta-button, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.19s, background 0.17s, border-color 0.18s, color 0.13s, transform 0.13s;
}

/* === VISUAL ELEMENTS AND HIERARCHY === */
hr {
  border: 0; 
  border-top: 2px dashed var(--color-secondary); 
  margin: 24px 0;
  width: 50%;
  opacity: 0.34;
  align-self: center;
}

/* === MISC: Hide non-active items, enforce spacing === */
main > section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 12px;
}

/* === FORCE NO OVERLAPS === */
.section, .card, .feature, .service-card, .testimonial-card {
  margin-bottom: 20px !important;
}
.features-grid, .service-cards, .testimonial-grid, .content-grid, .card-container {
  gap: 24px !important;
  margin-bottom: 0;
}

/* Hide unwanted scroll on body when mobile menu/cookie open */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden !important;
}
