/* === CSS RESET & NORMALIZE === */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F8F8F8;
  color: #23242A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #E6106B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #23242A;
  outline: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #23242A;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

p, ul li, ol li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

strong {
  font-weight: 700;
}

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

/* === HEADER & NAVIGATION === */
header {
  background: #23242A;
  color: #F8F8F8;
  padding: 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 8px 0 rgba(35,36,42,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  flex: 0 0 auto;
  margin-right: 26px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F8F8F8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 2px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #E6106B;
  background: rgba(232,16,107,0.08);
  outline: none;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #E6106B;
  color: #fff;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: 36px;
  text-transform: uppercase;
  transition: background 0.19s, transform 0.16s, box-shadow 0.17s;
  box-shadow: 0 5px 18px -7px #E6106B42, 0 2px 6px 0 #23242A10;
  margin-left: 22px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.btn-primary:focus,
.btn-primary:hover {
  background: #23242A;
  color: #E6106B;
  box-shadow: 0 7px 24px -4px #E6106B50;
  transform: translateY(-2px) scale(1.03);
}

/* === BURGER MENU (MOBILE ONLY) === */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: transparent;
  color: #E6106B;
  border-radius: 8px;
  border: 2px solid #E6106B;
  width: 44px;
  height: 44px;
  margin-left: 24px;
  transition: background 0.18s, color 0.18s;
  z-index: 23;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E6106B;
  color: #fff;
  outline: none;
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.8,.01,0,1);
  box-shadow: 2px 0 24px 0 rgba(35,36,42,.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #E6106B;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 26px 8px 0;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 36px 36px 46px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #23242A;
  padding: 10px 0;
  width: 100%;
  text-transform: uppercase;
  transition: color 0.19s, background 0.19s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #E6106B;
  background: #F8F8F8;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  header .container {
    justify-content: space-between;
  }
}

/* === MAIN LAYOUT STRUCTURE === */
main {
  padding-top: 18px;
  padding-bottom: 56px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 3px 16px -2px #23242A07, 0 0.5px 0 #23242A08;
  position: relative;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}

/* === CONTENT WRAPPER === */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section ul, .text-section ol {
  margin-left: 2px;
  margin-top: 6px;
}

/* === SPACING & FLEX CONTAINERS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px 0 #23242A08;
  border-radius: 16px;
  padding: 28px 24px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 324px;
  transition: transform .17s, box-shadow .17s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.021);
  box-shadow: 0 10px 24px -2px #E6106B33,0 1px 0 #E6106B19;
}
.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;
  margin-bottom: 20px;
  background: #F8F8F8;
  border-radius: 20px;
  border-left: 6px solid #E6106B;
  box-shadow: 0 6px 24px -12px #23242A13;
  max-width: 600px;
  flex: 1 1 280px;
}
.testimonial-card blockquote {
  color: #23242A;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.testimonial-card cite {
  color: #23242A;
  opacity: 0.67;
  font-size: 0.96rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === SERVICE LIST & CARDS === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list > div {
  background: #fff;
  border: 2px solid #E6106B18;
  box-shadow: 0 3px 16px -2px #23242A06;
  border-radius: 20px;
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 344px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: transform .16s, border-color .22s;
}
.service-list > div:hover, .service-list > div:focus-within {
  transform: translateY(-3px) scale(1.011);
  border-color: #E6106B;
}
.service-card {
  background: #F8F8F8;
  border: 2px solid #23242A16;
  border-radius: 20px;
  box-shadow: 0 2px 9px 0 #E6106B07;
  padding: 28px 22px;
  margin-bottom: 20px;
  flex: 1 1 228px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow .16s, border .14s;
}
.service-card:hover, .service-card:focus-within {
  border-color: #E6106B;
  box-shadow: 0 8px 28px -8px #23242A19, 0 2px 9px #E6106B29;
}
.price-overview {
  background: #23242A;
  color: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  margin-top: 32px;
  box-shadow: 0 2px 12px -3px #E6106B28;
  font-size: 1.01rem;
  max-width: 580px;
}
.price-overview h3 {
  color: #E6106B;
  font-size: 1.1rem;
  margin-bottom: 13px;
  text-transform: uppercase;
}
.price-overview ul {
  margin-left: 2px;
  line-height: 1.7;
}

.service-detail {
  background: #fff;
  border: 2px solid #E6106B11;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 #23242A08;
  padding: 20px 16px;
  min-width: 185px;
  max-width: 310px;
  flex: 1 1 205px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  transition: border .16s;
}
.service-detail:hover, .service-detail:focus-within {
  border-color: #E6106B;
}

.service-highlight {
  background: #E6106B07;
  color: #23242A;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 1.04rem;
  box-shadow: 0 3px 10px -4px #E6106B14;
  max-width: 470px;
  border-left: 4px solid #E6106B;
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 14px 0 7px 0;
}
.feature-icons img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #F8F8F8;
  padding: 4px;
  box-shadow: 0 2px 8px #23242A11;
}

.highlight-statistics {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #F8F8F8;
  padding: 18px;
  border-radius: 12px;
  margin-top: 14px;
  font-size: 1.07rem;
  box-shadow: 0 2px 9px -6px #E6106B21;
}
.highlight-statistics strong {
  color: #E6106B;
}

.team-bio {
  background: #fff;
  border: 2.5px solid #23242A10;
  border-radius: 20px;
  box-shadow: 0 4px 14px -6px #E6106B17;
  padding: 28px 24px;
  flex: 1 1 275px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: border-color .19s, box-shadow .18s;
}
.team-bio:hover, .team-bio:focus-within {
  border-color: #E6106B;
  box-shadow: 0 6px 24px -4px #E6106B31;
}

/* === FEATURED/BLOG POST === */
.featured-post {
  background: #fff;
  border: 2px solid #E6106B22;
  border-radius: 20px;
  padding: 20px 17px;
  margin-top: 14px;
  font-size: 1.07rem;
  box-shadow: 0 2px 12px -5px #23242A27;
  max-width: 470px;
  transition: border-color .14s;
}
.featured-post:hover, .featured-post:focus-within {
  border-color: #E6106B;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 2px 7px 0 #23242A0F;
  margin-left: 0;
}
.contact-details a {
  color: #E6106B;
  font-weight: 700;
}
.contact-details a:hover { color: #23242A; }

/* === FOOTER === */
footer {
  background: #23242A;
  padding: 40px 0 26px 0;
  color: #fff;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
footer nav.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 6px;
}
footer .footer-nav a {
  color: #E6106B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .18s, text-decoration .18s;
}
footer .footer-nav a:hover,
footer .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
  outline: none;
}
.footer-info {
  font-size: 0.97rem;
  color: #F8F8F8;
  opacity: 0.78;
  text-align: center;
  margin-bottom: 3px;
}
footer > .container > span {
  font-size: 0.96rem;
  opacity: 0.51;
  letter-spacing: 0.02em;
}

/* === GEOMETRIC ACCENTS (Ex: add after/before effect for some headings) === */
h2::before {
  content: "";
  display: inline-block;
  width: 38px; height: 8px;
  margin-right: 10px;
  background: #E6106B;
  border-radius: 12px 2px 12px 2px;
  vertical-align: middle;
}
h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* === BUTTONS === */
.btn-primary {
  box-shadow: 0 5px 18px -7px #E6106B42, 0 2px 6px 0 #23242A10;
}
.btn-primary:active {
  transform: scale(0.98);
  background: #b00c52;
  color: #fff;
}

/* === GENERAL INTERACTIVE: HOVER STATES === */
li, .service-list > div, .service-card, .team-bio, .feature-item, .testimonial-card, .featured-post {
  /* pointer cursor on hover for main items */
}
li a, .testimonial-card, .service-card, .team-bio, .feature-item, .featured-post {
  transition: box-shadow 0.16s, background 0.15s, border-color 0.16s, color 0.15s;
}

/* === FORMS (for future-proofing) === */
input, textarea, select {
  border: 2px solid #E6106B30;
  border-radius: 8px;
  background: #F8F8F8;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.16s;
  margin-bottom: 18px;
}
input:focus, textarea:focus, select:focus {
  border-color: #E6106B;
  box-shadow: 0 2px 7px -3px #E6106B2d;
  outline: none;
}

/* === RESPONSIVE DESIGN / BREAKPOINTS === */
@media (max-width: 991px) {
  .container {
    padding: 0 12px;
  }
  header .container {
    height: 56px;
  }
  .logo img {
    height: 34px;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 8px;
    padding-bottom: 40px;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 22px 6px;
    border-radius: 15px;
  }
  .content-wrapper, .service-list, .card-container, .content-grid, .team-bio {
    flex-direction: column;
    gap: 18px;
    align-items: stretch !important;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    max-width: 100%;
  }
  .service-list > div, .service-card {
    min-width: unset;
    max-width: 100%;
    padding: 16px 12px;
  }
  .team-bio {
    min-width: unset;
    max-width: 100%;
    padding: 16px 12px;
  }
  .featured-post {
    max-width: 100%;
    padding: 14px 6px;
  }
  .highlight-statistics, .service-highlight, .price-overview {
    padding: 13px 7px;
    max-width: 100%;
  }
  .text-image-section, .contact-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 0;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  h3, h4 { font-size: 1.01rem; }
  .btn-primary {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  .logo img { height: 24px; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  background: #23242A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 18px 16px 18px;
  box-shadow: 0 -4px 24px -8px #23242A41;
  z-index: 10040;
  font-size: 1rem;
  gap: 18px;
  opacity: 1;
  transform: translateY(0%);
  transition: opacity 0.28s, transform 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner strong {
  color: #E6106B;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: 26px;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  background: #E6106B;
  color: #fff;
  box-shadow: 0 2px 8px -3px #E6106B3a;
}
.cookie-btn.reject {
  background: #fff;
  color: #E6106B;
  border: 2px solid #E6106B;;
}
.cookie-btn.settings {
  background: #23242A;
  color: #fff;
  border: 2px solid #E6106B44;
}
.cookie-btn:focus,
.cookie-btn:hover {
  box-shadow: 0 5px 18px -7px #23242A33;
  background: #E6106B;
  color: #fff;
}
.cookie-btn.reject:focus,
.cookie-btn.reject:hover {
  background: #E6106B;
  color: #fff;
}
.cookie-btn.settings:focus,
.cookie-btn.settings:hover {
  background: #E6106B;
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,36,42,0.68);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {opacity: 0; pointer-events: none;}
.cookie-modal-content {
  background: #fff;
  color: #23242A;
  padding: 44px 36px 30px 36px;
  border-radius: 24px;
  max-width: 370px;
  width: 88vw;
  box-shadow: 0 8px 40px -6px #E6106B23;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 19px;
  position: relative;
}
.cookie-modal-title {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #E6106B;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category-label {
  flex: 1 1 0%;
}
.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F8F8F8;
  border: 2px solid #E6106B55;
  border-radius: 16px;
  transition: background .16s, border .17s;
}
.cookie-toggle-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #E6106B;
  border-radius: 50%;
  transition: transform 0.17s, background 0.15s;
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(14px);
  background: #23242A;
}
/* Always enabled style for essential */
.cookie-cat-row.essential .cookie-toggle-slider {
  background: #E6106B33;
  border: 2px solid #E6106B;
}
.cookie-cat-row.essential .cookie-toggle-slider:before {
  background: #E6106B;
}
/* Close button in modal */
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #E6106B;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 17px;
}
@media (max-width: 520px) {
  .cookie-modal-content {
    padding: 28px 10px 18px 10px;
    width: 96vw;
    border-radius: 12px;
  }
}

/* === UTILITY & STATE CLASSES === */
.d-none { display: none !important; }
.d-block { display: block !important; }
.hide-mobile { display: block !important; }
@media (max-width: 991px) {
  .hide-mobile { display: none !important; }
}

/* === GEOMETRIC/STRUCTURED MICRO-ACCENTS === */
ul li::before, ol li::before {
  content: '';
  display: inline-block;
  background: #E6106B;
  width: 12px; height: 12px;
  border-radius: 2px 8px 2px 8px;
  margin-right: 10px;
  margin-bottom: -2px;
  vertical-align: middle;
}
ul li,
ol li {
  margin-bottom: 13px;
  padding-left: 1px;
  position: relative;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

ol {
  counter-reset: geometricLi;
}
ol li {
  counter-increment: geometricLi;
}
ol li::before {
  content: counter(geometricLi);
  color: #E6106B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #fff;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 24px;
  border: 2px solid #E6106B;
  border-radius: 8px 2px 8px 2px;
  margin-right: 10px;
  margin-bottom: -7px;
  font-size: 1.1em;
  display: inline-block;
}

/* === SELECTION COLORS === */
::selection {
  background: #E6106B44;
  color: #fff;
}

/* === ANIMATIONS (for micro-interactions) === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.section, section, .card, .service-list > div, .service-card, .team-bio, .testimonial-card, .featured-post, .cookie-banner, .cookie-modal-content {
  animation: fadeInUp 0.36s cubic-bezier(.47,1.64,.41,.8) 1;
}

/* === END OF CSS === */