:root {
--primary: #2563eb;
--dark: #0f172a;
--light: #f8fafc;
--muted: #64748b;
--card: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, sans-serif;
margin: 0;
background: var(--light);
color: var(--dark);
line-height: 1.7;
}

/* HEADER */
header {
  background: var(--light);
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}

header .logo {
  width: 150px;
}

.logo img {
  width: 100%;
}

/* NAV LINKS */
.nav-links a {
  color: var(--dark);
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100vh;
  background: var(--light);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar a {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
}

.sidebar a:hover {
  color: var(--primary);
}

/* ACTIVE SIDEBAR */
.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sidebar-header img {
  width: 130px;
}

/* CLOSE BUTTON */
.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
}

/* OPTIONAL: CLICK OUTSIDE OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 900;
}

.overlay.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  header {
    padding: 1rem 1.5rem;
  }
}

section {
padding: 4rem 1.5rem;
}

.container {
max-width: 1100px;
margin: auto;
}

h1, h2, h3 {
margin-bottom: 0.75rem;
}

h1 {
font-size: 2.4rem;
text-align: center;
}

h2 {
font-size: 1.9rem;
}

p {
color: var(--muted);
}

/* HERO */
.services-hero {
background: linear-gradient(135deg, var(--primary), #2563eb);
color: #fff;
text-align: center;
padding: 5rem 1.5rem;
margin-top: 70px;
}

.services-hero p {
color: #e5edff;
max-width: 700px;
margin: 1rem auto 0;
}

/* SERVICES GRID */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.8rem;
margin-top: 3rem;
}

.service-card {
background: var(--card);
padding: 2.5rem;
border-radius: 18px;
box-shadow: 0 15px 35px rgba(0,0,0,0.07);
transition: transform 0.25s ease, box-shadow 0.25s ease;
border-left: 4px solid var(--primary);
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.service-card span {
font-size: 2rem;
display: block;
margin-bottom: 0.75rem;
}

.service-card ul {
padding-left: 1.2rem;
margin-top: 1rem;
}

.service-card li {
color: var(--muted);
font-size: 0.95rem;
margin-bottom: 0.4rem;
}

/* PROCESS */
.process {
background: #eef3ff;
border-radius: 24px;
padding: 3.5rem 2rem;
margin-top: 4rem;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 2.5rem;
}

.step {
text-align: center;
}

.step-number {
width: 48px;
height: 48px;
background: var(--primary);
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-weight: bold;
}

/* CTA */
.services-cta {
text-align: center;
margin-top: 4rem;
}

.services-cta a {
display: inline-block;
background: var(--primary);
color: #fff;
padding: 0.9rem 2.3rem;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
transition: transform 0.3s;
}

.services-cta a:hover {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
h1 { font-size: 1.9rem; }
h2 { font-size: 1.5rem; }
section { padding: 3rem 1.25rem; }
}

footer {
    background: var(--dark);
    color: var(--card);
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.footer-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact p {
  font-size: 0.95rem;
  text-align: left;
  color: var(--card);
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-logo img {
  width: 150px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 100;
}

.footer-links a:hover {
  color: var(--primary);
}

footer .copyright-container{
    margin-top: 2.5rem;
}

.copyright-container p{
    color: var(--card);
    font-size: 0.8rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .links-container {
    flex-direction: row;
    gap: 1.5rem;
  }

  .footer-contact{
    align-items: center;
  }

  .footer-contact p {
    font-size: 0.9rem;
  }

  footer .copyright-container{
    margin-top: 1.5rem;
}
}
