/* --------------------------------------------------------
   CSS RESET & BASE STYLES - Mobile-first
----------------------------------------------------------*/
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, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F4F4F9;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B3A42;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
*, *::before, *::after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }


/* --------------------------------------------------------
   BRAND COLORS
----------------------------------------------------------*/
:root {
  --color-primary: #2B3A42;
  --color-secondary: #D9B67B;
  --color-accent: #F4F4F9;
  --color-vibrant: #EF476F;
  --color-electric: #06D6A0;
  --color-blue: #118AB2;
  --color-yellow: #FFD166;
  --color-dark: #1C232C;
  --color-white: #FFFFFF;
}

/* --------------------------------------------------------
   TYPOGRAPHY
----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  line-height: 1.12;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 6px; }
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b { font-weight: 700; }
.subheadline {
  color: var(--color-vibrant);
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---------------------------------------------
   CONTAINER & GENERAL LAYOUT
-----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(43,58,66,0.06);
  display: flex;
  flex-direction: column;
}


/* ---------------------------------------------
   HEADER & NAVIGATION
-----------------------------------------------*/
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 14px rgba(44,58,66,0.09);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a,
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  padding: 8px 13px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover {
  background: var(--color-electric);
  color: var(--color-dark);
}
.header .cta-button {
  margin-left: 20px;
}
.mobile-menu-toggle {
  background: var(--color-vibrant);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
  padding: 4px 14px;
  display: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-blue);
  box-shadow: 0 3px 16px rgba(6,214,160,0.22);
}

/* ---------------------------------------------
   MOBILE NAVIGATION
-----------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--color-primary);
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  z-index: 120;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  padding: 20px 18px 8px 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 130;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 24px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  margin-bottom: 0;
  width: 90vw;
  text-align: center;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover {
  background: var(--color-vibrant);
  color: #fff!
}
@media (max-width: 1020px) {
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ---------------------------------------------
   HERO SECTION
-----------------------------------------------*/
.hero-section {
  background: linear-gradient(90deg, var(--color-secondary) 65%, var(--color-vibrant) 100%);
  color: var(--color-primary);
  padding-top: 56px;
  padding-bottom: 56px;
  margin-bottom: 60px;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: 0 8px 32px rgba(239,71,111,0.10);
  position: relative;
}
.hero-section .container {
  align-items: flex-start;
  gap: 32px;
}
.hero-section .content-wrapper {
  max-width: 680px;
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  padding: 40px 24px 34px 24px;
  box-shadow: 0 8px 32px 0 rgba(41,58,66,0.07);
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}
.hero-section h1 {
  color: var(--color-vibrant);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1.7px;
  text-shadow: 0 3px 24px rgba(41,58,66,0.09);
}
.hero-section .subheadline {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 30px;
}

/* ---------------------------------------------
   SECTIONS & FLEX UTILS
-----------------------------------------------*/
.feature-grid, .service-list, .project-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card-container,
.card-grid,
.content-grid {
  display: flex; flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card { margin-bottom: 20px; position: relative; border-radius: 20px; box-shadow: 0 3px 12px rgba(43,58,66,0.06); }
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-list {
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(41,58,66,0.10);
  min-width: 250px;
  flex: 1 1 270px;
  margin-right: 12px;
  margin-bottom: 0;
  color: var(--color-primary);
}
.testimonial-card p {
  color: #232825;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card strong {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-vibrant);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(52,100,234,0.08);
  padding: 18px 20px 18px 20px;
  flex: 1 1 220px;
  transition: box-shadow .22s, transform .1s;
}
.feature-item img,
.service-item img {
  width: 58px;
  height: 58px;
  margin-bottom: 5px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 6px 22px 0 rgba(6,214,160,0.14);
  transform: translateY(-3px) scale(1.03);
  cursor: pointer;
}
.service-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(6,214,160,0.10);
  padding: 18px 18px 22px 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .22s, transform .1s;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 6px 22px 0 rgba(239,71,111,0.11);
  transform: translateY(-3px) scale(1.04);
  cursor: pointer;
}
.project-list {
  gap: 24px;
  flex-direction: column;
}
.project-highlight {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(43,58,66,0.07);
  padding: 22px 24px;
  margin-bottom: 12px;
  border-left: 6px solid var(--color-vibrant);
}


/* ---------------------------------------------
   BUTTONS & CTA
-----------------------------------------------*/
.cta-button, a.cta-button {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--color-vibrant);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: .05em;
  padding: 14px 32px;
  margin-top: 16px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(239,71,111,0.13);
  cursor: pointer;
  transition: background 0.25s, color 0.15s, box-shadow .22s, transform .14s;
  display: inline-block;
  min-width: 180px;
  text-align: center;
}
.cta-button.primary {
  background: var(--color-vibrant);
  color: #fff;
}
.cta-button.secondary {
  background: var(--color-blue);
  color: #fff;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-electric);
  color: var(--color-dark);
  box-shadow: 0 4px 18px 0 rgba(6,214,160,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* ---------------------------------------------
   CARDS & UNIQUE BLOCKS
-----------------------------------------------*/
.card-container {
  display: flex; flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(44,58,66,0.08);
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .13s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 22px 0 rgba(239,71,111,0.13);
  transform: scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------------------------------------------
   CONTACT PAGE BLOCK
-----------------------------------------------*/
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 18px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px 22px;
  box-shadow: 0 2px 10px rgba(41,58,66,0.09);
}
.contact-details {
  flex: 1 1 220px;
  padding-right: 24px;
}
.map-placeholder {
  flex: 1 1 120px;
  border-radius: 16px;
  background: var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 10px 10px 10px;
  max-width: 245px;
}
.map-placeholder img {
  margin-bottom: 8px;
}

/* ---------------------------------------------
   FOOTER
-----------------------------------------------*/
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 44px 0 26px 0;
  margin-top: 50px;
  box-shadow: 0 -2px 18px rgba(44,58,66,0.09);
}
footer .container {
  flex-direction: column;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--color-secondary);
  background: none;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 6px 18px;
  transition: color 0.22s, background 0.22s;
}
.footer-nav a:hover {
  color: var(--color-white);
  background: var(--color-vibrant);
}
.footer-contact {
  color: #eee;
}
.footer-contact a { color: #ffd166; text-decoration: underline; }
.footer-meta {
  font-size: .95rem;
  color: #ffd166;
  opacity: .92;
  margin-top: 14px;
}

/* ---------------------------------------------
   LISTS & TYPO
-----------------------------------------------*/
ul, ol {
  margin-bottom: 18px;
  margin-left: 20px;
  padding-left: 8px;
}
ul li, ol li {
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
  color: var(--color-primary);
  font-size: 1rem;
}
ul li:before {
  content: '•';
  color: var(--color-vibrant);
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
}
ol li {
  list-style-type: decimal;
  color: var(--color-primary);
}
dt {
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-blue);
  margin-top: 18px;
}
dd {
  margin-bottom: 12px;
  margin-left: 24px;
  color: var(--color-primary);
}


/* ---------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 28px 16px 20px 16px;
  box-shadow: 0 -5px 32px rgba(44,58,66,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookie-banner-in .42s cubic-bezier(.86,0,.07,1);
}
@keyframes cookie-banner-in {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: var(--color-blue);
  color: #fff;
  margin: 0;
  transition: background 0.22s, color 0.15s;
}
.cookie-btn.accept {
  background: var(--color-electric);
  color: var(--color-dark);
}
.cookie-btn.reject {
  background: var(--color-vibrant);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: .92;
  background: var(--color-secondary);
  color: #232825;
}
/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0;
  width:100vw; height:100vh;
  background:rgba(43,58,66,0.62);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity:1;
  visibility: visible;
  animation: fadeInModal .38s cubic-bezier(.86,0,.07,1);
}
@keyframes fadeInModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 20px;
  min-width: 325px;
  max-width: 94vw;
  padding: 34px 26px 20px 26px;
  box-shadow: 0 8px 48px 0 rgba(239,71,111,0.16), 0 2px 18px rgba(44,58,66,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  animation: modalUpIn .39s cubic-bezier(.7,0,.13,1);
}
@keyframes modalUpIn {
  from { transform: translateY(48px) scale(.96); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-vibrant);
  margin-bottom: 12px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--color-vibrant);
  font-size: 2rem;
  position: absolute;
  top: 14px; right: 18px;
  cursor: pointer;
  line-height: 1;
  z-index: 13011;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-blue);
}
.cookie-modal-content {
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: var(--color-vibrant);
  width: 20px; height: 20px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category.essential label { font-weight: 700; color: var(--color-blue); }
.cookie-category input:disabled + label {
  opacity: 0.7;
}

/* ---------------------------------------------
   ANIMATIONS
-----------------------------------------------*/
a, button, .cta-button, .feature-item, .service-item, .testimonial-card {
  transition: background 0.22s, transform 0.11s, box-shadow .2s, color 0.13s;
}

/* ---------------------------------------------
   RESPONSIVENESS
-----------------------------------------------*/
@media (max-width:1020px) {
  .container {
    padding: 0 9px;
    max-width: 100vw;
  }
  header .container {
    padding: 0 9px;
  }
}
@media (max-width:980px) {
  .feature-grid, .service-list, .testimonial-list, .card-grid, .content-grid,
  .project-list, .card-container, .footer-nav, .contact-info-block {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .feature-item, .service-item, .testimonial-card, .contact-details, .map-placeholder {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width:768px) {
  .hero-section {
    padding-top: 28px;
    padding-bottom: 32px;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
  }
  .hero-section .content-wrapper {
    padding: 22px 8px;
    border-radius: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section {
    padding: 26px 7px;
    margin-bottom: 35px;
    border-radius: 13px;
  }
  .cta-button {
    padding: 10px 22px;
    font-size: .98rem;
    min-width: 150px;
    border-radius: 10px;
  }
  .footer-nav { gap: 15px; }
}
@media (max-width:540px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 9px 12px 10px;
  }
  .cookie-banner { padding: 21px 4px 10px 4px; }
}
@media (max-width:420px) {
  .hero-section {
    padding-top: 15px;
    padding-bottom: 14px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
}

/* ---------------------------------------------
   CUSTOM UTIL CLASSES (used by design)
-----------------------------------------------*/
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 2px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-12 { margin-top: 12px !important; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
align-center { align-items: center !important; }
align-start { align-items: flex-start !important; }

/* ----------- Hide html scroll when modal/menu open -----------*/
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* ---------------------------------------------
   ACCESSIBILITY FOCUS
-----------------------------------------------*/
a:focus, button:focus, .cta-button:focus {
  outline: 3px solid var(--color-electric);
  outline-offset: 1px;
}

/* ---------------------------------------------
   MICRO-INTERACTIONS (interactive feedback)
-----------------------------------------------*/
.feature-item:active,
.service-item:active,
.cta-button:active {
  transform: scale(0.97);
}

/* END OF VIBRANT ENERGETIC Dizzy Hub STYLES */
