/* =======================================================
   NovaWires – Futuristic Tech-Inspired Theme
   Responsive, Flexbox-Only, Modern, Accessible CSS
   ======================================================= */

/*--- 1. RESET & NORMALIZE ---*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: #0A1324;
  color: #F4F7FB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #12B5E5;
  text-decoration: none;
  transition: color .2s cubic-bezier(.39,.575,.565,1);
}
a:hover,a:focus {
  color: #41e8ff;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #F4F7FB;
  letter-spacing: .012em;
  line-height: 1.2;
}
h1 { font-size: 2.375rem; margin-bottom: 18px; }
h2 { font-size: 1.875rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}

button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  font-family: inherit;
  cursor: pointer;
  border-radius: 24px;
  outline: none;
  border: none;
  transition: background .2s, color .2s, box-shadow .2s;
}

/*--- 2. BRAND COLORS & TYPOGRAPHY ---*/
:root {
  --color-primary: #1A2440;
  --color-secondary: #12B5E5;
  --color-accent: #F4F7FB;
  --color-bg-dark: #0A1324;
  --color-bg-card: #14203a;
  --color-bg-hero: #101829;
  --color-neon: #41E8FF;
  --color-neon-pink: #FA4EFF;
  --color-shadow: rgba(17,34,51,0.22);
  --color-error: #FF4558;
  --font-display: 'Roboto', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition-fast: .18s cubic-bezier(.39,.575,.565,1);
  --border-radius-lg: 22px;
  --border-radius-md: 14px;
  --border-radius-sm: 8px;
  --box-shadow-main: 0 4px 28px 0 var(--color-shadow);
}

/*--- 3. LAYOUT CONTAINERS ---*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0; /* overriden in children */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 900px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 4vw;
  }
}

/*--- 4. NAVIGATION ---*/
header {
  background: var(--color-bg-dark);
  box-shadow: 0 2px 14px rgba(16,30,56,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 70px;
  padding: 0 10px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav ul li a {
  color: #F4F7FB;
  text-transform: uppercase;
  letter-spacing: .05em;
  position: relative;
  padding: 7px 11px;
  border-radius: 14px;
  font-weight: 600;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--color-secondary);
  color: #101829;
}

.main-nav img {
  height: 36px;
}
.cta.primary {
  background: linear-gradient(90deg, #12B5E5 0%, #41E8FF 100%);
  color: #090D1A;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: .07em;
  padding: 11px 28px;
  border-radius: 24px;
  margin-left: 18px;
  box-shadow: 0 0 16px #12B5E5AA;
  position: relative;
  transition: transform .11s, box-shadow .18s, background .22s;
  outline: none;
  border: none;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #FA4EFF 0%, #12B5E5 100%);
  color: #fff;
  box-shadow: 0 6px 28px #41E8FF55;
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #12B5E5;
  font-size: 2rem;
  margin-left: 12px;
  z-index: 30;
  cursor: pointer;
  outline: none;
}

@media (max-width: 1023px) {
  .main-nav ul, .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,18,36,0.98);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.44,1.14,.38,1.03);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 18px 0 0;
  background: #101829;
  color: #12B5E5;
  border: none;
  font-size: 2.1rem;
  z-index: 1003;
  padding: 6px 14px;
  border-radius: 24px;
  cursor: pointer;
  transition: background .19s, color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #12B5E5;
  color: #101829;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 32px;
  margin-left: 38px;
}
.mobile-nav a {
  color: #F4F7FB;
  font-size: 1.13rem;
  letter-spacing: .04em;
  padding: 12px 0 12px 0;
  border-radius: 8px 24px 24px 8px;
  transition: background .16s, color .18s;
  min-width: 160px;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #12B5E5;
  color: #101829;
}

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

/*--- 5. HERO SECTION ---*/
.hero {
  background: linear-gradient(120deg, #1A2440 32%, #163B51 100%);
  border-bottom: 3px solid #12B5E5;
  min-height: 310px;
  display: flex;
  align-items: center;
  padding: 36px 0 32px 0;
  position: relative;
  box-shadow: 0 2px 32px #41e8ff11;
}
.hero .container, .hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta.primary {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 170px;
    padding: 20px 0 16px 0;
  }
  .hero .cta.primary {
    margin-top: 8px;
  }
}

/*--- 6. FLEX LAYOUTS ---*/
.feature-grid, .card-container, .service-cards, .testimonial-slider, .blog-featured-posts, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}

.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;
}

@media (max-width: 900px) {
  .content-grid, .feature-grid, .card-container, .service-cards, .testimonial-slider, .text-image-section, .blog-featured-posts {
    flex-direction: column;
    gap: 20px;
  }
}

/*--- 7. FEATURE / SERVICE / CARD STYLES ---*/
.feature-item, .service-card, .workshop-list li, .blog-post {
  background: var(--color-bg-card);
  color: #F4F7FB;
  padding: 28px 22px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 28px 0 var(--color-shadow);
  flex: 1 1 230px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid transparent;
  transition: border-color .22s, box-shadow .18s, transform .18s;
  will-change: box-shadow, border-color, transform;
}
.feature-item:hover, .service-card:hover, .blog-post:hover, .workshop-list li:hover {
  border-color: #12B5E5;
  box-shadow: 0 8px 36px 0 #12b5e522;
  transform: translateY(-3px) scale(1.03);
}
.feature-item img, .service-card img {
  height: 46px;
  width: 46px;
  filter: drop-shadow(0px 0px 8px #12b5e544);
}
.feature-item h3, .service-card h3, .workshop-list li h3, .blog-post h3 {
  font-size: 1.19rem;
  color: var(--color-neon);
}
.feature-item p, .service-card p, .workshop-list li p {
  color: #c6e0f6;
  font-size: 1rem;
  font-weight: 400;
}
.service-card span, .workshop-list li span {
  font-size: .98rem;
  color: var(--color-neon-pink);
  margin-top: 7px;
}

/* Price box and summary */
.price-summary, .pricing-overview {
  background: #172141;
  color: #f5f7fc;
  border-radius: 13px;
  margin: 16px 0 8px 0;
  padding: 18px 20px;
  box-shadow: 0 2px 16px #12b5e522;
  font-size: 1.09rem;
}

/*--- 8. BLOGS/LISTS ---*/
.blog-featured-posts {
  gap: 22px;
}
.blog-post {
  border-left: 4px solid #12B5E5;
  background: #10203a;
  margin-bottom: 20px;
  transition: box-shadow .19s;
}
.blog-post h3 {
  font-size: 1.14rem;
  color: #FA4EFF;
}
.blog-post a {
  color: #12B5E5;
  margin-top: 12px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .14s;
}
.blog-post a:hover, .blog-post a:focus {
  border-color: #FA4EFF;
  color: #FA4EFF;
}

.blog-categories {
  margin: 18px 0 12px 0;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.blog-categories li {
  background: #0f1429;
  color: #12B5E5;
  border-radius: 8px;
  padding: 7px 17px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .03em;
  box-shadow: 0 2px 10px #12b5e511;
}
.search-filter {
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-filter input[type="text"] {
  background: #141c35;
  border-radius: 9px;
  color: #F4F7FB;
  padding: 10px 14px;
  border: 1px solid #22305a;
  font-size: .98rem;
  transition: border-color .2s;
}
.search-filter input:focus {
  border-color: #12B5E5;
  outline: none;
}

/*--- 9. TEXT/CONTENT SECTIONS ---*/
.text-section {
  background: none;
  color: #c6e0f6;
  padding: 4px 0 4px 0;
}
.text-section ul {
  margin: 10px 0 0 25px;
  list-style: disc outside;
}
.text-section li {
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: #b9d3f4;
}
.text-section h3 {
  margin-top: 18px;
  color: #12B5E5;
}

/*--- 10. TABLES & PRICING ---*/
.pricing-table {
  width: 100%;
  background: #172141;
  color: #F4F7FB;
  border-radius: 13px;
  margin: 24px 0 12px 0;
  box-shadow: 0 2px 10px #12b5e511;
  overflow: hidden;
  border-collapse: collapse;
  font-size: 1rem;
}
.pricing-table caption {
  background: #12B5E5;
  color: #101829;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 11px;
  font-size: 1.07rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 11px;
  text-align: left;
  border-bottom: 1px solid #22305A;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table th {
  background: #101829;
  color: #12B5E5;
}
.pricing-table tr:hover td {
  background: #20335C;
}

/*--- 11. TESTIMONIALS & SLIDER ---*/
.testimonials {
  background: linear-gradient(96deg, #0F1A34 68%, #181f2f 88%, #153146 100%);
  box-shadow: 0 0 88px #41e8ff19 inset;
  border-radius: var(--border-radius-lg);
  padding-top: 24px;
  padding-bottom: 30px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #F4F7FB;
  color: #1A2440;
  border-radius: 18px;
  box-shadow: 0 3px 20px #1a244021, 0 -1.5px 0 #12b5e52c inset;
  min-width: 230px;
  max-width: 430px;
  margin-bottom: 20px;
  border: 2px solid #12B5E5;
  transition: border-color .18s, transform .15s, box-shadow .18s;
}
.testimonial-card:focus-within, .testimonial-card:hover {
  border-color: #FA4EFF;
  box-shadow: 0 8px 30px #FA4EFF12;
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card p {
  color: #1A2440;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #163B51;
  font-size: .97rem;
  margin-bottom: 2px;
  font-style: italic;
}
.star-rating {
  color: #12B5E5;
  font-size: 1.09rem;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 3px #12b5e5);
}

@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/*--- 12. CTA SECTION ---*/
.section.cta, .cta {
  background: linear-gradient(92deg, #12B5E5 8%, #FA4EFF 81%);
  color: #0A1324!important;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 2px 18px #12b5e555;
  margin-bottom: 52px;
}
.section.cta h2, .cta h2, .section.cta h1 {
  color: #0A1324;
}
.section.cta .cta.primary, .cta .cta.primary {
  background: #0A1324;
  color: #12B5E5;
  border: 2.5px solid #12B5E5;
  box-shadow: 0 2px 8px #10182966;
  margin-top: 8px;
  margin-bottom: 0px;
  transition: background .19s, color .17s, border-color .13s;
}
.section.cta .cta.primary:hover, .section.cta .cta.primary:focus, .cta .cta.primary:hover, .cta .cta.primary:focus {
  background: #FA4EFF;
  color: #101829;
  border-color: #FA4EFF;
}

/*--- 13. FOOTER ---*/
footer {
  background: #141c35;
  color: #F4F7FB;
  padding: 34px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #12B5E5;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 6px 14px;
  border-radius: 10px;
  background: #0A1324;
  transition: background .16s, color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #12B5E5;
  color: #0A1324;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .99rem;
}
.footer-contact img {
  height: 35px;
  margin-bottom: 7px;
}
.footer-contact span {
  color: #c6e0f6;
}

/*--- 14. COMPANY CONTACT/INFO SECTIONS ---*/
.company-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 12px 0;
}
.company-contact-details img {
  width: 22px;
  margin-right: 11px;
  vertical-align: middle;
}
.company-contact-details p {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f4f7fb;
  font-size: 1rem;
}
.company-contact-details a {
  color: #12B5E5;
}
.map {
  margin: 16px 0 0 0;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #101829;
  border-radius: var(--border-radius-md);
  padding: 12px 20px;
  box-shadow: 0 1.5px 8px #12b5e511;
  color: #f4f7fb;
}
.location-directions ul {
  margin-left: 22px;
  list-style: disc outside;
}
.opening-hours, .faq {
  margin-top: 28px;
}
.faq ul {
  margin: 9px 0 9px 17px;
  list-style: disc outside;
}
.faq li {
  margin-bottom: 13px;
}

/*--- 15. LIST ELEMENTS ---*/
ul.services-list, ul.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
ul.services-list li, ul.workshop-list li {
  background: #163B51;
  border-radius: 17px;
  padding: 25px 19px;
  min-width: 220px;
  flex: 1 1 230px;
  color: #F4F7FB;
  margin-bottom: 20px;
  border-left: 4px solid #12B5E5;
  box-shadow: 0 2.5px 14px #12b5e52c;
  transition: box-shadow .16s, border-color .18s;
}
ul.services-list li:hover, ul.workshop-list li:hover {
  border-color: #FA4EFF;
  box-shadow: 0 7px 22px #fa4eff24;
}
ul.services-list h3, ul.workshop-list h3 {
  color: #12B5E5;
  margin-bottom: 5px;
  font-size: 1.07rem;
}

.dates-locations, .tech-highlights, .support-features {
  background: #172141;
  color: #f4f7fc;
  border-radius: 13px;
  margin: 18px 0 8px 0;
  padding: 16px 19px;
  box-shadow: 0 2px 10px #12b5e522;
  font-size: .98rem;
}

.tech-highlights ul, .support-features ul, .pricing-overview ul {
  margin: 0 0 0 20px;
  list-style: disc outside;
}

.innovation-tabs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.innovation-tabs li {
  color: #12B5E5;
  background: #222c44;
  border-radius: 8px;
  padding: 7px 17px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
  box-shadow: 0 2px 10px #12b5e511;
  transition: background .17s, color .17s;
  cursor: pointer;
}
.innovation-tabs li:hover, .innovation-tabs li.selected {
  background: #12B5E5;
  color: #101829;
}

/*--- 16. APP SPACING/ALIGNMENT ---*/
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: var(--border-radius-lg); box-shadow: 0 3px 18px #12b5e515; background: #14203a; }
.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; }

/*--- 17. RESPONSIVE ---*/
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
  .container { padding: 0 2vw; }
  .content-wrapper { gap: 19px; }
  .feature-grid, .card-container, .service-cards, .testimonial-slider, .blog-featured-posts, .text-image-section, .content-grid { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .main-nav img { height: 28px; }
  .footer-contact img { height: 24px; }
}

/*--- 18. BUTTON & LINK STYLES ---*/
button, input[type=submit], .cta, .mobile-menu-toggle, .mobile-menu-close {
  box-shadow: 0 2px 10px #12b5e522;
  outline: none;
  position: relative;
}
button:active, .cta.primary:active { transform: scale(.98); }

/*--- 19. COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(90deg,#163B51 20%,#0A1324 90%);
  color: #F4F7FB;
  padding: 26px 22px;
  box-shadow: 0 -2px 26px #12b5e522;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 1111;
  transition: transform .34s cubic-bezier(.19,.75,.32,1.13);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(170%);
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 6px;
}
.cookie-btn {
  background: #12B5E5;
  color: #101829;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 630;
  padding: 8px 24px;
  border: none;
  margin: 0 4px;
  transition: background .16s, color .15s;
}
.cookie-btn.accept {
  background: linear-gradient(95deg, #12B5E5 60%, #41E8FF 120%);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FA4EFF;
  color: #fff;
}
.cookie-btn.reject {
  background: #172141;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FF4558;
  color: #fff;
}
.cookie-btn.settings {
  background: #141c35;
  color: #12B5E5;
  border: 1.5px solid #12B5E5;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #12B5E5;
  color: #101829;
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,19,36,0.93);
  z-index: 1212;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .32s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal-content {
  background: #172141;
  border-radius: 23px;
  box-shadow: 0 7px 55px #12b5e55c;
  padding: 42px 32px;
  min-width: 320px;
  max-width: 96vw;
  color: #F4F7FB;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #12B5E5;
  font-size: 1.27rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 15px 0;
}
.cookie-switch {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #0A1324;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid #12b5e533;
  position: relative;
  transition: background .15s, border-color .15s;
}
.cookie-switch:checked {
  background: #12B5E5;
  border-color: #12B5E5;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 1px;
  top: 1px;
  background: #fff;
  border-radius: 50%;
  transition: left .16s;
}
.cookie-switch:checked:before {
  left: 17px;
  background: #1A2440;
}

.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: transparent;
  font-size: 1.47rem;
  color: #12B5E5;
  border: none;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 22px 8px;
    min-width: 180px;
  }
}

/*--- 20. ANIMATIONS ---*/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.section, .hero, .feature-item, .service-card, .testimonial-card, .blog-post, .card {
  animation: fadeInUp .75s cubic-bezier(.22,.68,.43,1.01);
}

/*--- 21. GENERAL UTILITY CLASSES ---*/
.d-none { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }

/*--- 22. FOCUS STYLES FOR ACCESSIBILITY ---*/
a:focus, button:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus, .cookie-modal-close:focus {
  outline: 2px solid #12B5E5;
  outline-offset: 2px;
}

/*--- 23. ICONS ---*/
.feature-item img, .service-card img, .company-contact-details img, .map img {
  filter: drop-shadow(0 0 10px #12B5E5) brightness(1.2);
}

/*--- 24. MISC ---*/
.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; }

/*--- END ---*/
