/* ========================
   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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FCFCFC;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 1.2em;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* ================================
   CUSTOM PROPERTIES FOR BRANDING
================================= */
:root {
  --color-primary: #194266;
  --color-secondary: #EAB464;
  --color-accent: #FFFFFF;
  --color-bg: #FCFCFC;
  --color-heading-dark: #162335;
  --color-body: #25344a;
  --color-muted: #758197;
  --color-border: #eaeaea;
  --color-shadow: rgba(25,66,102,0.08);
  --color-gold: #eab464;
  --radius-main: 18px;
  --radius-btn: 32px;
  --shadow-light: 0 2px 16px var(--color-shadow);
  --transition-main: all 0.2s cubic-bezier(.4,0,.2,1);
}

/* =======================
   TYPOGRAPHY - FONTS
========================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Open+Sans:wght@400;600;700&display=swap');

html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--color-body);
  font-size: 16px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-heading-dark);
  letter-spacing: 0.01em;
}
.section h1, h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.13;
}
.section h2, h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section h3, h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
h4, .section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
body, p, ul, ol, li, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--color-body);
  font-size: 1rem;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}
blockquote {
  border-left: 5px solid var(--color-gold);
  padding-left: 18px;
  margin: 28px 0 18px 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-heading-dark);
  background: #FAF6F0;
}

/* =====================
   LAYOUT STRUCTURE
======================*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-main);
  box-shadow: 0 1px 10px var(--color-shadow);
}

/* =====================
   FLEXBOX UTILITY LAYOUTS
======================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.2s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 22px 26px;
}
.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;
  padding: 20px;
  background: #F7F8FA;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 500px;
  color: var(--color-heading-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =======================
   SECTION & CARD DESIGN
========================*/
.service-preview-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 26px 28px 22px 28px;
  min-width: 250px;
  flex: 1 1 230px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
  border: 1px solid var(--color-border);
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.service-card strong, .service-card span {
  color: var(--color-gold);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,66,102,0.13);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.tips-grid > div {
  flex: 1 1 180px;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  padding: 18px 18px 12px 18px;
  min-width: 200px;
  transition: box-shadow 0.2s;
}
.tips-grid > div:hover {
  box-shadow: 0 6px 18px 0 rgba(25,66,102,0.13);
}

.trend-tips, .occasion-outfit-tips, .special-event-highlight, .trend-highlights, .service-highlights {
  margin-top: 24px;
  background: #FEF8ED;
  border-left: 5px solid var(--color-gold);
  padding: 16px 24px;
  border-radius: 0 var(--radius-main) var(--radius-main) 0;
  box-shadow: 0 1px 4px 0 rgba(25,66,102,0.06);
}

/* =======================
   LISTS & ICONS
========================*/
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 8px;
}
ul li, .main-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
ul li img {
  width: 1.3em;
  height: 1.3em;
  object-fit: contain;
}

/* ===============
   BUTTONS & CTA
================*/
.cta, .section a.cta, a.cta, button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 44px;
  padding: 0 32px;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 15px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--color-gold);
  z-index: 1;
  transition: opacity 0.22s;
}
.cta:hover, .cta:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 6px 22px rgba(25,66,102,0.13);
  outline: none;
}
.cta:active {
  background: #d7a952;
  color: var(--color-primary);
}

/* ========================
   NAVIGATION STYLES
=========================*/
header {
  background: #fff;
  box-shadow: 0 4px 28px var(--color-shadow);
  border-bottom: 1px solid var(--color-border);
  padding: 0; 
  position: sticky;
  top: 0; left: 0; z-index: 99;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 26px;
  height: 74px;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  padding: 0 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.09rem;
  position: relative;
  line-height: 74px;
  border-radius: 4px;
  transition: color 0.22s, background 0.18s;
}
.main-nav > a:not(.cta):hover,
.main-nav > a:not(.cta):focus {
  color: var(--color-gold);
  background: #f7f7f6;
  outline: none;
}
.main-nav > a.cta {
  margin-left: auto;
  min-width: 170px;
  min-height: 38px;
  padding: 0 20px;
  box-shadow: none;
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  line-height: 38px;
}
.main-nav > a.cta:hover, .main-nav > a.cta:focus {
  background: var(--color-primary);
  color: #fff;
}
.main-nav img {
  max-height: 43px;
  margin-right: 12px;
  margin-left: 0;
}

/* ----------
 MOBILE NAV
----------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 110;
  background: var(--color-primary);
  color: white;
  font-size: 2.15rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px var(--color-shadow);
  border: none;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(25,66,102, 0.992);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.65,.01,.28,.99);
  box-shadow: 0 8px 32px rgba(25,66,102,0.15);
  overflow-y: auto;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 2.18rem;
  color: var(--color-gold);
  background: none;
  border: none;
  z-index: 1102;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(234,180,100,0.1);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 70px;
  width: 100vw;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  min-height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 4px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* Show/hide on breakpoints */
@media (max-width: 1000px) {
  .main-nav > a:not(.cta) { font-size: 1.01rem; }
  .main-nav { gap: 14px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 790px) {
  .main-nav > a {
    font-size: 0.99rem;
    padding: 0 4px;
  }
  .main-nav {
    gap: 6px;
    padding-left: 6px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============
   FOOTER
================*/
footer {
  background: #fff;
  border-top: 2px solid var(--color-border);
  padding: 32px 0 18px 0;
  margin-top: 62px;
  box-shadow: 0 -2px 10px var(--color-shadow);
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--color-primary);
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  outline: none;
}
footer address, footer small {
  color: var(--color-muted);
  font-size: 0.96rem;
}
footer address a { color: var(--color-primary); }
footer address a:hover { color: var(--color-gold); text-decoration: underline; }

/* ===============
   HERO & MAIN
================*/
main .section, main section {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 20px var(--color-shadow);
  margin-bottom: 60px;
}
main .container, main .container .content-wrapper, main .container .content-wrapper > * {
  width: 100%;
}

/* ===============
   TESTIMONIALS
================*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #F7F8FA;
  color: #13223D;
  min-width: 260px;
  flex: 1 1 260px;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  font-size: 1.05rem;
  position: relative;
  border-left: 4px solid var(--color-gold);
  padding: 20px 26px 20px 26px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(25,66,102,0.16);
}
.testimonial-card p {
  color: #162335;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.98rem;
}
.testimonial-card strong {
  color: var(--color-gold);
}

/* ===============
   TABLE/ MAP / BUSINESS HOURS
================*/
.map-embed,
.business-hours,
.contact-info-text-section {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F7F8FA;
  border-radius: var(--radius-main);
  padding: 14px 18px;
  min-height: 54px;
}

.map-embed img {
  width: 48px;
  height: 48px;
}

/* ===============
   THANK YOU NAVIGATION
================*/
.thank-you-navigation {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 1.06rem;
  justify-content: flex-start;
}
.thank-you-navigation a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.22s;
}
.thank-you-navigation a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

/* ===============
   TEXT SECTION
================*/
.text-section {
  font-size: 1.09rem;
  color: var(--color-body);
  line-height: 1.7;
  margin: 12px 0;
}
.text-section strong { color: var(--color-primary); }

/* =============
   SPACING
==============*/
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ============
   COOKIE CONSENT
==============*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #162335;
  color: #fff;
  padding: 18px 20px;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -1px 18px rgba(25,66,102,0.12);
  font-size: 1.04rem;
  animation: slideUpCookie 0.45s cubic-bezier(.67,0,.29,.99);
}
@keyframes slideUpCookie {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner button, .cookie-banner .cookie-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-btn);
  padding: 0 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-height: 40px;
  margin: 0 4px;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 5px rgba(234,180,100,0.08);
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner .cookie-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .cookie-btn.secondary {
  background: transparent;
  border: 1.6px solid var(--color-gold);
  color: var(--color-gold);
  box-shadow: none;
}
.cookie-banner .cookie-btn.secondary:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4022;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(22,35,53,0.56);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }

.cookie-modal {
  background: #fff;
  border-radius: var(--radius-main);
  max-width: 480px;
  min-width: 300px;
  width: 88vw;
  margin: 0 auto;
  padding: 36px 30px 24px 30px;
  box-shadow: 0 8px 32px 0 rgba(25,66,102,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInCookieModal 0.2s cubic-bezier(.32,0,.61,1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2, .cookie-modal h3 {
  color: var(--color-primary);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  margin-bottom: 0.6em;
}
.cookie-modal .modal-btns {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 9px;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-primary);
  color: #fff;
}

/* =========================
   RESPONSIVE DESIGN/MOBILE
==========================*/
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 990px) {
  .service-preview-list, .services-list,
  .testimonial-slider, .card-container, .tips-grid {
    gap: 18px;
  }
  .section { padding: 36px 7vw; }
  .service-card { min-width: 180px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 28px 5vw; margin-bottom: 38px; }
  h1.section, .section h1 { font-size: 2rem; }
  h2.section, .section h2 { font-size: 1.35rem; }
  .service-card, .tips-grid > div {
    padding: 16px 12px 12px 12px;
    min-width: 120px;
  }
  .service-preview-list, .services-list, .testimonial-slider,
  .tips-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .thank-you-navigation { gap: 12px; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .map-embed, .business-hours, .contact-info-text-section {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 10px;
  }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  .container { padding-left: 8px; padding-right:8px; }
  .section { padding: 18px 3vw; }
  .service-card, .tips-grid > div {
    padding: 11px 8px 9px 8px;
  }
  .cta, .section a.cta {
    min-width:110px;
    font-size: 0.98rem;
    padding:0 14px;
  }
}

/* ========================
   SMOOTH TRANSITIONS
========================= */
a, .cta, .service-card, .tips-grid > div, .main-nav > a, .footer-nav a {
  transition: var(--transition-main);
}

/* ==========================
   ACCESSIBILITY FOCUS STATE
=========================== */
a:focus-visible, .cta:focus-visible {
  outline: 2px dashed var(--color-primary);
  outline-offset: 2px;
}

/* ===============
   HIDE UTILITIES
================*/
[hidden] { display:none !important; }

/* ==========================
   PRINT MODE
=========================== */
@media print {
  body, .container, main, .section, footer, header {
    background: #fff;
    color: #000;
    box-shadow: none;
    border: none;
  }
  .main-nav, .mobile-menu, .footer-nav, .cta, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
