@charset "UTF-8";
/* CSS Document */
:root {
  --bg: #1e1e20;
  --bg-card: #161616;
  --blue: #1e90ff;
  --blue-dark: #0077e6;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --border: #2a2a2a;
  --header-bg: #1e1e20;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid #3a3b3d;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}

.logo img {
  height: 100px;               /* Larger logo in header */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: auto;                 /* remove forced full height */
  padding: 140px 0 80px;            /* tighter top & bottom */
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #0d0d0d 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-graphic img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* ========== SECTIONS ========== */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-8px);
}

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service Images */
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.03);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s;
  overflow: hidden;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* PROCESS */
.process {
  background: #111;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  text-align: center;
  padding: 30px 15px;
}

.process-number {
  width: 58px;
  height: 58px;
  background: var(--blue);
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  margin-top: 30px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.why-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: 1.3rem;
}

.why-image img {
  border-radius: 12px;
}

/* Why Us Gallery */
.why-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.why-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.why-gallery img:hover {
  transform: scale(1.03);
}
/* ========== FOOTER ========== */
footer {
  background: #0a0a0a;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr !important;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--blue);
}

.footer-facebook .fb-page {
  border-radius: 8px;
  overflow: hidden;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}