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

:root {
  --dark: #0d1117;
  --dark-2: #161b22;
  --accent: #e63946;
  --accent-2: #ffb703;
  --text-light: #f5f5f5;
  --text-muted: #b0b6bd;
  --radius: 12px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(13,17,23,0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-2); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 26px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 30% 20%, #1c2530 0%, #0d1117 70%);
  padding-top: 76px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,0.12), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230,57,70,0.35);
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-outline {
  border-color: var(--text-light);
  color: var(--text-light);
}
.btn-outline:hover { background: var(--text-light); color: var(--dark); }
.full-width { width: 100%; text-align: center; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent-2);
}
.hero-stats span { color: var(--text-muted); font-size: 0.85rem; }

/* Sections */
.section { padding: 100px 0; }
.section.alt { background: var(--dark-2); }
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title.left { text-align: left; }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 50px;
}

.grid {
  display: grid;
  gap: 30px;
}
.services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.card .icon { font-size: 2.2rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  height: 220px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.g1 { background: linear-gradient(135deg,#2c3e50,#4a6072); }
.g2 { background: linear-gradient(135deg,#3a3d40,#181719); }
.g3 { background: linear-gradient(135deg,#e63946,#8d1c26); }
.g4 { background: linear-gradient(135deg,#485563,#29323c); }
.g5 { background: linear-gradient(135deg,#ffb703,#d38b06); }
.g6 { background: linear-gradient(135deg,#0d1117,#3d4550); }

/* Pricing */
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.price-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.25s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #1c2530, var(--dark-2));
}
.badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.price-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 24px;
}
.price-card ul { margin-bottom: 30px; text-align: left; }
.price-card ul li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Testimonials */
.testimonial-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testimonial {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 30px;
}
.testimonial p { color: var(--text-muted); margin-bottom: 16px; font-style: italic; }
.testimonial strong { color: var(--accent-2); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.info-list li { margin-bottom: 14px; color: var(--text-muted); }
.info-list a { color: var(--accent-2); }
.socials { display: flex; gap: 14px; margin-top: 20px; }
.socials a {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.socials a:hover { background: var(--accent); }

.contact-form {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-form h3 { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-muted);
  margin-top: 16px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--dark);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form button { margin-top: 24px; }
.form-note { margin-top: 14px; color: var(--accent-2); font-size: 0.9rem; min-height: 20px; }

/* Legal page */
.legal { padding-top: 140px; max-width: 800px; }
.legal h1 { margin-bottom: 10px; }
.legal h2 { margin-top: 34px; margin-bottom: 10px; color: var(--accent-2); }
.legal p, .legal li { color: var(--text-muted); margin-bottom: 8px; }
.legal ul { padding-left: 20px; list-style: disc; }

/* Footer */
.footer {
  background: var(--dark-2);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}
.footer h4 { font-size: 1.2rem; margin-bottom: 14px; }
.footer h4 span { color: var(--accent); }
.footer h5 { margin-bottom: 14px; color: var(--accent-2); }
.footer p, .footer a { color: var(--text-muted); font-size: 0.9rem; }
.footer div a { display: block; margin-bottom: 8px; }
.footer .socials a { display: inline-block; margin-bottom: 0; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .hero-stats { gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
