/* -------------------
  CSS RESET & BASE
----------------------*/
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F3EA;
  color: #232832;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after { box-sizing: inherit; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* -------------------------------
  BRAND & VIBRANT ENERGETIC STYLE
-----------------------------------*/
:root {
  --brand-primary: #232832;
  --brand-secondary: #7A8A9B;
  --brand-accent: #F7F3EA;
  --electric-blue: #00A8FF;
  --hot-pink: #FF3370;
  --vivid-yellow: #FFE169;
  --vibrant-lime: #61F36D;
  --vivid-orange: #FF7819;
  --white: #fff;
  --black: #232832;
  --shadow-1: 0 2px 16px 0 rgba(0,0,0,0.07);
  --shadow-2: 0 4px 32px 0 rgba(0,0,0,0.10);
  --radius: 20px;
}

body {
  /* Add slightly off-white background for energy */
  background: linear-gradient(90deg, #F7F3EA 70%, #FFFDE4 100%);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 20px;
}

.logo img {
  height: 54px;
  width: auto;
  display: block;
}

/* -------------------
    TYPOGRAPHY
-------------------*/
h1, h2, h3, .cta-button {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
}
h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-shadow: 0 2px 24px rgba(0,128,255,0.04);
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 8px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hot-pink);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--electric-blue);
}
.tagline {
  font-family: 'Montserrat', sans-serif;
  color: var(--vivid-orange);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.subheadline {
  color: var(--brand-secondary);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}
p, li, address {
  font-size: 1rem;
  color: var(--brand-primary);
}
address {
  font-style: normal;
  line-height: 1.7;
}
strong {
  font-weight: bold;
  color: var(--hot-pink);
}

/* ---------------
    NAVBAR
----------------*/
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  color: var(--brand-primary);
  padding: 5px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--hot-pink);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--electric-blue);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 32px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 28px 0 rgba(0,168,255,0.14);
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.22s, color 0.15s, box-shadow 0.22s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--hot-pink);
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(255,51,112,0.13);
}

/* HIDE BURGER ON DESKTOP */
.mobile-menu-toggle {
  display: none;
  background: var(--hot-pink);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s;
  z-index: 1200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electric-blue); 
  outline: none;
}

/* -------------------
  HERO SECTIONS
--------------------*/
.hero {
  width: 100%;
  background: linear-gradient(94deg, var(--electric-blue) 0%, var(--hot-pink) 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 32px 0 rgba(0,36,128,0.08);
  margin-bottom: 60px;
  padding: 48px 0 56px 0;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero .subheadline, .hero .tagline, .hero p {
  color: #fff !important;
}
.hero .cta-button {
  margin-top: 16px;
}

/* ------------
   FLEX GRIDS
------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: space-between;
}
.feature-card {
  flex: 1 0 220px;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.23s, transform 0.19s;
  margin-bottom: 20px;
  border-left: 7px solid var(--electric-blue);
}
.feature-card:hover, .feature-card:focus {
  box-shadow: var(--shadow-2);
  transform: translateY(-6px) scale(1.03);
  border-left: 7px solid var(--hot-pink);
}
.feature-card img {
  height: 48px;
  margin-bottom: 6px;
}
.service-price {
  font-weight: 800;
  color: var(--vivid-orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-top: auto;
  letter-spacing: 0.7px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  flex-direction: column;
}
.service-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  border-left: 6px solid var(--hot-pink);
  transition: box-shadow 0.23s, border-color 0.21s;
}
.service-block:hover {
  box-shadow: var(--shadow-2);
  border-left: 6px solid var(--electric-blue);
}

/* -----------
   USP LIST
------------- */
.usp-list {
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.usp-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 600;
  padding-left: 10px;
  position: relative;
}
.usp-list li::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 11px;
  background: linear-gradient(132deg, var(--electric-blue) 60%, var(--hot-pink) 100%);
  display: inline-block;
}

/* -----------
     BLOG
------------ */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-article-preview {
  flex: 1 0 270px;
  min-width: 270px;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, background 0.22s;
  border-left: 5px solid var(--vivid-lime);
}
.blog-article-preview:hover, .blog-article-preview:focus {
  box-shadow: var(--shadow-2);
  background: var(--vivid-yellow);
  border-left: 5px solid var(--hot-pink);
}
.blog-link {
  margin-top: 6px;
  font-weight: 700;
  color: var(--electric-blue);
  text-decoration: underline;
  transition: color 0.15s;
}
.blog-link:hover {
  color: var(--hot-pink);
}

/* ----------
  PROJECTS
----------- */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-preview {
  flex: 1 0 260px;
  min-width: 260px;
  max-width: 410px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.22s, border-color 0.15s;
  border-left: 6px solid var(--vibrant-lime);
}
.project-preview:hover {
  box-shadow: var(--shadow-2);
  border-left: 6px solid var(--hot-pink);
}


/* --------------
    TEAM CARDS
--------------- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  flex: 1 0 240px;
  min-width: 240px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 26px 20px 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 5px solid var(--electric-blue);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.team-member:hover {
  border-left: 5px solid var(--hot-pink);
  box-shadow: var(--shadow-2);
}
.team-member h3 {
  color: var(--hot-pink);
  font-size: 1.2rem;
}

/* --------------
   CTA Section
---------------- */
.cta-section {
  margin-bottom: 0;
  background: linear-gradient(94deg, var(--vivid-yellow) 0%, var(--vivid-orange) 100%);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px 0 rgba(255,123,0,0.08);
  padding: 56px 0 64px 0;
  text-align: center;
  display: flex;
  align-items: center;
}
.cta-section .content-wrapper {
  align-items: center; 
  gap: 30px;
}
.cta-section h2 {
  color: var(--brand-primary);
  font-size: 2.2rem;
}
.cta-section .cta-button {
  font-size: 1.2rem;
  padding: 18px 54px;
  font-weight: 900;
  letter-spacing: 2px;
  background: var(--hot-pink);
}
.cta-section .cta-button:hover {
  background: var(--electric-blue);
}


/* -------------
  TESTIMONIALS
-------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  background:  #fff;
  border-radius: var(--radius);
  padding: 20px 28px 20px 28px;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 520px;
  border-left: 5px solid var(--vivid-lime);
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08em;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98em;
  color: var(--hot-pink);
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-2);
  border-left: 5px solid var(--vivid-yellow);
}

/* Ensure contrast on testimonials in vibrantly colored backgrounds */
.hero .testimonial-card,
.cta-section .testimonial-card {
  background: #fff;
  color: #232832;
  border-left: 5px solid var(--hot-pink);
}

/* ---------------
  CONTACT INFO
---------------- */
.contact-info-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 22px 18px 16px 24px;
  margin-bottom: 20px;
}
.contact-info-block address {
  color: var(--brand-primary);
}
.contact-notice {
  background: #fff7ee;
  border-radius: 14px;
  padding: 16px 20px 14px 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--hot-pink);
}


/* --------------
   FOOTER
---------------- */
footer {
  background: var(--black);
  color: #fff;
  padding: 46px 0 34px 0;
  border-radius: 24px 24px 0 0;
  margin-top: 80px;
  font-size: 0.98em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
footer address {
  color: #fff;
}
footer a {
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.15s;
}
footer a:hover, footer a:focus {
  opacity: 1;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.11);
  transition: background 0.18s;
}
.footer-social img:hover {
  background: var(--electric-blue);
}

/* ---------------
   MOBILE MENU
-----------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35,40,50,0.97);
  color: #fff;
  z-index: 2000;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 46px;
  width: 100%;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  padding: 7px 0;
  border-radius: 8px;
  margin-bottom: 4px;
  transition: background 0.18s,color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* Hide main nav on mobile, show burger */
@media (max-width: 1000px) {
  .main-nav,
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ---------------
   COOKIE BANNER
-------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3800;
  background: linear-gradient(94deg, var(--electric-blue), var(--hot-pink));
  color: #fff;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 -6px 24px 0 rgba(0,0,0,0.11);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  animation: cookie-fade-in 0.5s;
}
@keyframes cookie-fade-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 280px;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.09);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cookie-btn.accept {
  background: var(--vibrant-lime);
  color: var(--brand-primary);
}
.cookie-btn.accept:hover {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--vivid-yellow);
  color: var(--brand-primary);
}
.cookie-btn.reject:hover {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--hot-pink);
}
.cookie-btn.settings:hover {
  background: var(--electric-blue);
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4000;
  background: rgba(32, 40, 45, 0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.46s;
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--brand-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: 40px 32px 30px 32px;
  width: 95%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop 0.32s cubic-bezier(0.56,0,0.22,1);
}
@keyframes modal-pop {
  from { transform: scale(0.92); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: var(--hot-pink);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 11px;
  background: var(--brand-secondary);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 6px;
}
.cookie-toggle:checked {
  background: var(--electric-blue);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.16s;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal-footer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: transparent;
  color: var(--hot-pink);
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  cursor: pointer;
  margin-left: -12px;
  margin-bottom: 3px;
}
.cookie-modal-close:hover { color: var(--electric-blue); }

/* -------------------
  RESPONSIVE FLEX & LAYOUT
------------------------*/
@media (max-width: 1100px) {
  .features-grid, .project-list, .blog-list, .team-list {
    gap: 16px;
  }
  .feature-card,
  .project-preview,
  .blog-article-preview,
  .team-member {
    min-width: 170px;
    max-width: 95vw;
  }
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 900px) {
  .footer-social img { width: 28px; height: 28px; }
  footer .container, .header-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .section { padding: 32px 5px; }
  .cta-section { padding: 40px 0 44px 0; }
}
@media (max-width: 768px) {
  .features-grid, .project-list, .blog-list, .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-card,
  .project-preview,
  .blog-article-preview,
  .team-member, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .section { padding: 24px 2px 24px 2px; }
  .hero, .cta-section {
    padding: 25px 0 35px 0;
    border-radius: 18px;
  }
  .content-wrapper { gap: 20px; }
  h1, .hero h1 { font-size: 2rem; }
  h2, .cta-section h2 { font-size: 1.5rem; }
  .main-nav, .cta-button { display: none !important; }
}
@media (max-width: 600px) {
  .header-flex { padding-top: 11px; padding-bottom: 11px; }
  .logo img { height: 44px; }
  .footer-nav { gap: 6px; }
  footer { padding: 28px 0 22px 0; }
}
@media (max-width: 490px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 6px 13px 6px;
  }
  .cookie-banner-actions {
    justify-content: flex-start;
    gap: 8px;
  }
}

/* ------ Utility spacing rules ------ */
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.pt-40 { padding-top: 40px; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/*****************************************
 * CUSTOM PATTERNS - MISSION CRITICAL
 *****************************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ------------------
   TRANSITIONS & ANIMATIONS
---------------------*/
a, .cta-button, .blog-link, .cookie-btn {
  transition: background 0.18s, color 0.16s, box-shadow 0.19s;
}
.card, .feature-card, .service-block, .project-preview, .team-member, .blog-article-preview, .testimonial-card {
  transition: box-shadow .18s, border-color .13s, background 0.22s;
}

/* -----------
     SCROLLBAR
--------------*/
::-webkit-scrollbar {
  width: 12px;
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: var(--hot-pink);
  border-radius: 8px;
}

/* [END OF FILE] */
