/* RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #f5f7fa;
  background: #191A1D;
  line-height: 1.58;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.82,.05,.34,1);
}
a:focus {
  outline: 2px solid #356378;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
input, textarea {
  background: #232733;
  border-radius: 8px;
  border: 1.5px solid #356378;
  padding: 12px 16px;
  color: #ffffff;
  transition: border 0.2s;
  margin-bottom: 16px;
}
input:focus, textarea:focus {
  border-color: #FFC945;
}
::-webkit-input-placeholder { color: #abb3bc; }
::-moz-placeholder { color: #abb3bc; }
:-ms-input-placeholder { color: #abb3bc; }
::placeholder { color: #abb3bc; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FFC945;
  line-height: 1.12;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.05rem;
}
p {
  margin-bottom: 14px;
  color: #d9e8ef;
}
strong {
  color: #FFC945;
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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;
}

/* HEADER & NAVIGATION */
header {
  background: #232733;
  box-shadow: 0 6px 20px -10px #05233d90;
  position: relative;
  z-index: 10;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 36px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 60px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #F7F8F3;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
}
.nav-links a:not(.btn-primary):after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #FFC945;
  transition: width 0.3s cubic-bezier(.82,.05,.34,1);
}
.nav-links a:hover:not(.btn-primary):after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 12px 28px;
  background: #356378;
  color: #FFC945;
  border: 2px solid #FFC945;
  font-size: 1.05rem;
  box-shadow: 0 2px 16px 0 #0a1e2671;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.3s;
  text-shadow: 0 0 3px #2f3a4199;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFC945;
  color: #232733;
  border-color: #356378;
  box-shadow: 0 4px 24px 0 #35637870, 0 0 6px 2px #FFC94595;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 24px;
  background: #191A1D;
  color: #FFC945;
  font-size: 2.2rem;
  border-radius: 6px;
  border: 2px solid #FFC945;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 101;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #356378;
  background: #232733;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  min-height: 100vh;
  width: 100vw;
  background: #232733;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.78,.18,.2,1);
  box-shadow: 0 8px 32px 0 #191A1Dcc;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 26px;
  margin-bottom: 0;
  background: none;
  color: #FFC945;
  font-size: 2.5rem;
  cursor: pointer;
  align-self: flex-end;
  border-radius: 6px;
  border: 2px solid #FFC945;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #191A1D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #FFC945;
  border-radius: 10px;
  padding: 10px 0 10px 12px; 
  transition: background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #356378;
  color: #fff;
}

@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 991px) {
  .main-navigation {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .nav-links {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-navigation .nav-links {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-navigation {
    padding-right: 60px;
  }
}
@media (min-width: 769px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}


/* HERO SECTION */
.hero {
  background: linear-gradient(110deg, #232733 55%, #356378 100%) no-repeat;
  box-shadow: 0 4px 24px 0 #232733a7;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 48px;
  min-height: 340px;
}
.hero .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero h1 {
  color: #FFC945;
  text-shadow: 0 2px 18px #35637870;
}
.hero p {
  font-size: 1.16rem;
  color: #d9e8ef;
}

/* FEATURES */
.features {
  background: #2e3a4b;
  border-radius: 30px;
  box-shadow: 0 2px 20px 0 #0e23339f;
  margin-bottom: 60px;
}
.features h2 {
  color: #FFC945;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 12px;
}
.features li {
  position: relative;
  padding-left: 28px;
  font-size: 1.06rem;
  color: #e2e6ec;
}
.features li:before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 40%;
  background: #FFC945;
  box-shadow: 0 0 8px 1px #FFC945cc;
}

/* CARDS & SERVICE SECTIONS */
.service-card-list, .blog-articles-list, .case-study-list, .faq-list, .testimonial-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 32px 0;
}
.service-card, .case-study-item, .faq-item, .testimonial-card {
  background: #232733;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 #0617246e;
  padding: 24px 26px;
  min-width: 240px;
  flex: 1 1 260px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1.7px solid #2b4050;
}
.service-card:hover, .case-study-item:hover, .faq-item:hover, .testimonial-card:hover {
  transform: translateY(-8px) scale(1.017);
  box-shadow: 0 8px 36px 0 #191A1Dcc, 0 0 10px 2px #35637855;
  border-color: #356378;
}
.service-card h3, .service-card h2 {
  font-size: 1.22rem;
  margin-bottom: 7px;
  color: #FFC945;
}
.service-card .price {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.02rem;
  color: #F7F8F3;
  font-weight: 500;
  background: #2e3a4b;
  border-radius: 8px;
  padding: 6px 14px;
  border: 1px solid #FFC94544;
}

/* TESTIMONIALS */
.testimonials {
  background: #F7F8F3;
  border-radius: 28px;
  color: #232733;
  box-shadow: 0 2px 14px 0 #f7f8f3a0;
}
.testimonials h2 {
  color: #356378;
}
.testimonial-card-list {
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #232733;
  border: 2px solid #FFC94599;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 #FFC94533;
  min-width: 250px;
  flex: 1 1 320px;
  position: relative;
  padding: 20px 24px 24px 24px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card:hover {
  border-color: #356378;
  box-shadow: 0 6px 24px 0 #FFC94588;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #356378;
  font-size: 0.97rem;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.2px;
  text-align: right;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(110deg, #232733 55%, #356378 100%) no-repeat;
  border-radius: 30px;
  box-shadow: 0 4px 32px 0 #2327336a;
  text-align: center;
  margin-bottom: 60px;
}
.cta-final h2 {
  color: #FFC945;
}
.cta-final p {
  color: #d9e8ef;
}

/* ABOUT, TEAM, VALUE SECTIONS */
.about-story, .why-choose-us, .team, .portfolio-intro, .highlighted-projects, .case-studies, .policy-section, .blog-intro, .latest-articles, .categories, .newsletter-signup, .contact-hero, .contact-details, .contact-form-section, .map-section, .thank-you-section {
  background: #232733;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 #233e5760;
  margin-bottom: 60px;
}
.about-story h1, .policy-section h1, .blog-intro h1, .portfolio-intro h1, .contact-hero h1, .thank-you-section h1 {
  color: #FFC945;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-list li strong {
  color: #FFC945;
}

/* SERVICES PAGE */
.services-list, .service-process, .faq-section {
  background: #232733;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 #1f365050;
  margin-bottom: 60px;
}
.service-process ol {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 14px 0 20px 20px;
  counter-reset: steps;
}
.service-process ol li {
  position: relative;
  padding-left: 32px;
  color: #d9e8ef;
  font-size: 1.09rem;
}
.service-process ol li:before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0; top: 7px;
  width: 22px; height: 22px;
  background: #FFC945;
  color: #232733;
  border-radius: 50%;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-align: center;
  line-height: 22px;
  box-shadow: 0 0 6px 1px #FFC945bb;
}
.faq-list {
  flex-direction: column;
  gap: 18px;
}
.faq-item h3 {
  color: #FFC945;
  margin-bottom: 6px;
}

/* PORTFOLIO PAGE */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.project-list li {
  background: #222;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 #233e5760;
  padding: 20px 26px;
}
.project-list h3 {
  color: #FFC945;
}
.case-study-list {
  flex-wrap: wrap;
  gap: 24px;
}
.case-study-item {
  background: #232733;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 #35637840;
  padding: 20px 20px 18px 24px;
  flex: 1 1 320px;
  min-width: 230px;
}
.case-study-item strong {
  color: #FFC945;
}

/* BLOG PAGE */
.blog-articles-list, .category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0 8px 0;
}

.newsletter-signup form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-top: 18px;
}

.newsletter-signup input[type=email] {
  min-width: 200px;
  max-width: 340px;
  border-radius: 10px;
  background: #232733;
  color: #FFC945;
  border: 1.5px solid #356378;
  padding: 12px 14px;
  margin-bottom: 0;
  font-size: 1rem;
}
.newsletter-signup label {
  color: #FFC945;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
}

/* CONTACT PAGE */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1rem;
  margin-top: 8px;
  color: #d9e8ef;
}
.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  background: #2e3a4b;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 2px 14px 0 #05233d29;
}
.contact-form-section label {
  color: #FFC945;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
textarea {
  min-height: 94px;
  resize: vertical;
}

.map-placeholder {
  background: #232733;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px dashed #FFC945;
  color: #FFC945;
  text-align: center;
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: #232733;
  color: #ccc;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 16px 0 #23273350;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 32px 0 8px 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFC945;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  letter-spacing: 0.07rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #356378;
  color: #fff;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding-bottom: 32px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  flex-wrap: wrap;
  color: #F7F8F3;
  text-align: center;
}
.footer-branding img {
  width: 42px;
  height: 42px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #232733;
  border-top: 4px solid #FFC945;
  color: #F7F8F3;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 16px 14px 14px 14px;
  font-size: 1rem;
  box-shadow: 0 -2px 18px 0 #232733a7;
  animation: cookieSlideUp 0.5s cubic-bezier(.82,.05,.34,1);
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  color: #F7F8F3;
  font-size: 1rem;
}
.cookie-banner-button {
  border-radius: 20px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 7px;
  transition: background .18s, color .18s, border .18s;
  font-weight: 600;
  box-shadow: 0 2px 6px 0 #1a247844;
  font-size: 1.01rem;
  cursor: pointer;
  border: 2px solid #FFC945;
}
.cookie-accept {
  background: #356378;
  color: #FFC945;
}
.cookie-banner-button:hover, .cookie-banner-button:focus {
  background: #FFC945;
  color: #232733;
  border: 2px solid #356378;
}
.cookie-reject {
  background: #fff;
  color: #356378;
  border: 2px solid #356378;
}
.cookie-settings {
  background: #F7F8F3;
  color: #356378;
  border: 2px solid #FFC945;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 23, 43, 0.80);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInOverlay 0.33s cubic-bezier(.78,.18,.2,1);
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232733;
  border-radius: 20px;
  color: #F7F8F3;
  box-shadow: 0 6px 36px 0 #232733d9;
  max-width: 420px;
  width: 96vw;
  padding: 36px 30px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  z-index: 10011;
  animation: slideDownModal 0.37s cubic-bezier(.82,.05,.34,1);
}
@keyframes slideDownModal {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: #FFC945;
  margin-bottom: 19px;
  margin-top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.cookie-category input[type=checkbox] {
  accent-color: #FFC945;
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #FFC945;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category .category-desc {
  color: #eef1ef;
  font-size: 0.97rem;
  font-weight: 400;
  margin-left: 13px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-banner-button {
  margin-left: 0;
  flex: 1;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px; top: 18px;
  background: none;
  border: 2px solid #FFC945;
  color: #FFC945;
  border-radius: 99px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #356378;
  color: #fff;
}

/* RESPONSIVE & FLEX LAYOUTS */
@media (max-width: 991px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .footer-nav { gap: 18px; }
  .service-card, .case-study-item, .testimonial-card {
    flex: 1 1 240px;
    padding: 20px 14px;
  }
  .team-list, .features ul {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  h1 {
    font-size: 1.6rem;
    margin-bottom: 9px;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section, .features, .policy-section, .cta-final, .about-story, .why-choose-us, .team, .portfolio-intro, .highlighted-projects, .case-studies, .blog-intro, .latest-articles, .categories, .newsletter-signup, .contact-hero, .contact-details, .contact-form-section, .map-section, .thank-you-section, .services-list, .service-process, .faq-section {
    margin-bottom: 38px;
    padding: 24px 8px;
    border-radius: 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .service-card-list, .case-study-list, .testimonial-card-list, .blog-articles-list {
    gap: 10px;
  }
  .service-card, .case-study-item, .testimonial-card, .faq-item {
    flex: 1 1 98vw;
    min-width: 0;
    padding: 13px 7px;
  }
  .footer-branding {
    flex-direction: column;
    gap: 7px;
  }
  .footer-nav {
    gap: 9px;
    padding: 18px 0 8px 0;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero .container {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .hero {
    min-height: 190px;
    margin-bottom: 35px;
    border-radius: 0 0 19px 19px;
  }
}

/* FOCUS & HOVER STATES */
button:focus, [tabindex]:focus, .btn-primary:focus, a:focus {
  outline: 2.5px solid #FFC945;
  outline-offset: 2px;
}

/* SHADOWS & GLOWS - TECH FUTURISTIC ACCENTS */
.btn-primary, .card, .service-card, .case-study-item, .faq-item, .testimonial-card {
  box-shadow: 0 0 8px 0 #35637840;
}
.btn-primary:hover {
  box-shadow: 0 2px 18px 6px #FFC94544, 0 0 8px 2px #35637820;
  text-shadow: 0 0 6px #FFC94599;
}

/* NEON GLOW DECOR (decorative only, not content) */
.card:before { display: none; }

/* FINAL SPACING ADJUSTMENTS */
.section:not(:last-child), .features:not(:last-child), .cta-final:not(:last-child) {
  margin-bottom: 60px;
}
.card-container > *, .content-grid > *, .service-card-list > *, .case-study-list > *, .testimonial-card-list > *, .faq-list > * {
  margin-bottom: 0;
}

/* Hide horizontal scroll if child elements overflow on mobile */
html, body {
  overflow-x: hidden;
}

/* CUSTOM SCROLLBAR */
body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-thumb {
  background: #232733;
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: #191A1D;
}

/* FONT IMPORTS (safe inline) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* HIDE OUTDATED BROWSERS WARNING IF NEEDED */

/* END STYLES */
