*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #231f20;
  --teal: #007fa8;
  --sky: #00a3d3;
  --accent: #00a3d3;
  --light-blue: #a2d7ee;
  --grey: #939598;
  --light: #f0f6fa;
  --white: #ffffff;
  --text: #231f20;
  --muted: #939598;
  --cream: #f5fbfe;
  --hero-bg: #00a3d3;
  --cta-dark: #007fa8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;

  padding: 10px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e8edf2;
}

nav .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: clamp(90px, 15vw, 160px);
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: clamp(15px, 2vw, 32px);
  list-style: none;
}
.nav-links a {
  font-family: "Rajdhani", sans-serif;
  color: #231f20;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #00a3d3;
}

.nav-cta {
  background: #00a3d3;
  color: #ffffff !important;
  padding: 8px 22px;
  border-radius: 4px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: opacity 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.85;
  color: var(--navy) !important;
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ── SIDEBAR ── */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 100;
  padding: 50px 30px 30px;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  overflow-y: auto;
}
.sidebar.active {
  left: 0;
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  margin-bottom: 10px;
}
.sidebar-links a {
  font-family: "Rajdhani", sans-serif;
  color: var(--navy);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: inline-block;
  padding: 0px 0;
}
.sidebar-links a:hover {
  color: var(--accent);
}
.sidebar-links .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: 4px;
  margin-top: 10px;
  text-align: center;
  transition: opacity 0.2s;
}
.sidebar-links .nav-cta:hover {
  opacity: 0.85;
  color: var(--navy) !important;
}

/* ── SITE FOOTER ── */
.site-footer {
  background: #e8f4f9;
  padding: 64px 60px 36px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-company-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.83rem;
  color: #5a6a7a;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-icons {
  display: flex;
  gap: 10px;
}
.footer-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 163, 211, 0.1);
  border: 1px solid rgba(0, 163, 211, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  text-decoration: none;
}
.footer-icon-btn:hover {
  background: rgba(0, 163, 211, 0.2);
  border-color: rgba(0, 163, 211, 0.4);
}
.footer-icon-btn svg {
  width: 16px;
  height: 16px;
  stroke: #00a3d3;
}
.footer-col h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #231f20;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li,
.footer-col ul li a {
  font-size: 0.83rem;
  color: #5a6a7a;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-legal {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-legal p {
  font-size: 0.75rem;
  color: #939598;
  margin: 0;
  line-height: 1.7;
}
.footer-copy {
  margin-top: 10px !important;
  color: #b0b5b9 !important;
}
.footer-doc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.footer-doc-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-doc-links a:hover {
  color: #00a3d3;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #231f20;
  border-top: 3px solid #00a3d3;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}
.cookie-banner-text a {
  color: #00a3d3;
  text-decoration: underline;
}
.cookie-banner-text a:hover {
  color: #a2d7ee;
}
.cookie-banner-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 6px !important;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: #00a3d3;
  color: #ffffff;
  border: none;
  padding: 11px 26px;
  border-radius: 4px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  background: #007fa8;
}
.cookie-btn-necessary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 11px 26px;
  border-radius: 4px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.cookie-btn-necessary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner-buttons {
    width: 100%;
  }
  .cookie-btn-accept,
  .cookie-btn-necessary {
    flex: 1;
    text-align: center;
  }
}

/* ── ANIMATION ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .fade-in {
  animation: fadeUp 0.7s ease both;
}

.home-page .delay-1 {
  animation-delay: 0.1s;
}

.home-page .delay-2 {
  animation-delay: 0.2s;
}

.home-page .delay-3 {
  animation-delay: 0.3s;
}

.new-client-page .fade-in {
  animation: fadeUp 0.7s ease both;
}
.new-client-page .delay-1 {
  animation-delay: 0.1s;
}
.new-client-page .delay-2 {
  animation-delay: 0.2s;
}
.new-client-page .delay-3 {
  animation-delay: 0.3s;
}
.new-client-page .delay-4 {
  animation-delay: 0.4s;
}
.new-client-page .delay-5 {
  animation-delay: 0.5s;
}
.new-client-page .delay-6 {
  animation-delay: 0.6s;
}
.new-client-page .delay-7 {
  animation-delay: 0.7s;
}
.new-client-page .delay-8 {
  animation-delay: 0.8s;
}
.new-client-page .delay-9 {
  animation-delay: 0.9s;
}
.new-client-page .delay-10 {
  animation-delay: 1s;
}
.new-client-page .delay-11 {
  animation-delay: 1.1s;
}
.new-client-page .delay-12 {
  animation-delay: 1.2s;
}
.new-client-page .delay-13 {
  animation-delay: 1.3s;
}
.new-client-page .delay-14 {
  animation-delay: 1.4s;
}
.new-client-page .delay-15 {
  animation-delay: 1.5s;
}
.new-client-page .delay-16 {
  animation-delay: 1.6s;
}
.new-client-page .delay-17 {
  animation-delay: 1.7s;
}
.new-client-page .delay-18 {
  animation-delay: 1.8s;
}
.new-client-page .delay-19 {
  animation-delay: 1.9s;
}
.new-client-page .delay-20 {
  animation-delay: 2s;
}
.new-client-page .delay-21 {
  animation-delay: 2.1s;
}
.new-client-page .delay-22 {
  animation-delay: 2.2s;
}
.new-client-page .delay-23 {
  animation-delay: 2.3s;
}
.new-client-page .delay-24 {
  animation-delay: 2.4s;
}
.new-client-page .delay-25 {
  animation-delay: 2.5s;
}
.new-client-page .delay-26 {
  animation-delay: 2.6s;
}
.new-client-page .delay-27 {
  animation-delay: 2.7s;
}
.new-client-page .delay-27 {
  animation-delay: 2.7s;
}
.new-client-page .delay-28 {
  animation-delay: 2.8s;
}
.new-client-page .delay-29 {
  animation-delay: 2.9s;
}
.new-client-page .delay-30 {
  animation-delay: 3s;
}
.new-client-page .delay-31 {
  animation-delay: 3.1s;
}
.new-client-page .delay-32 {
  animation-delay: 3.2s;
}
.new-client-page .delay-33 {
  animation-delay: 3.3s;
}
.new-client-page .delay-34 {
  animation-delay: 3.4s;
}
.new-client-page .delay-35 {
  animation-delay: 3.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 15px 30px 15px 25px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    padding: 48px 24px;
  }
  .services {
    padding: 52px 24px;
  }
  .trust {
    text-align: center;
    padding: 52px 24px;
  }
  .trust .trust-container {
    grid-template-columns: 1fr;
  }
  .about {
    padding: 52px 24px;
  }
  .contact-strip {
    padding: 48px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer {
    padding: 48px 24px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-top .footer-col {
    display: flex;
    flex-direction: column;
    flex: 1 1 30%;
    min-width: 150px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}
