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

@font-face {
  font-family: 'Satoshi';
  src: url('./font/satoshi-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./font/satoshi-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

body {
  font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
  background-color: #000000;
  color: #f5f5f5;
  line-height: 1.5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, .section-title, .row-title, .stat-number {
  font-size: 35px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.95;
}

.section-sub, .hero-content p, .feedback-text, .card-info p, .contact-info p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.65;
}

.legal-text h3 {
  font-size: 20px;
  font-weight: 700;
}

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

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

/* hover effect */
.nav-inner:hover {
  transform: translateY(-3px); /* slight lift */
  background: rgba(255, 255, 255, 0.08); /* subtle white tint */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.logo-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.nav-inner .nav-links {
  display: flex;
  gap: 16px;
}

.nav-inner .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  opacity: 0.85;
}

.nav-cta {
  margin-left: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.btn {
  display: inline-block;
  background-color: #ef1f1f;
  color: #ffffff;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: #c91b1b;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid transparent;
  color: #efefef;
}

.btn-outline:hover {
  border-color: #ef1f1f;
  color: #ef1f1f;
}

section {
  padding: 64px 0;
  scroll-margin-top: 50px;
  padding-top: 50px;
}

.section-title {
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
  color: #ffffff;
  opacity: 0.9;
  letter-spacing: -1px;
}

.section-sub {
  text-align: center;
  color: #ffffff;
  opacity: 0.65;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero {
  background: #000000;
  padding: 110px 0 72px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-content {
  width: 100%;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-align: center;
}

.hero-title .red-text {
  color: #ef1f1f;
}

.line-top {
  display: block;
}

.line-bottom {
  display: block;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px; 
  margin: 0 auto 28px;
}

.style-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 16px;
}

.badge {
  background: rgba(255, 255, 255, 0.06);
  color: #e5e7eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.thumb-card,
.stat-card,
.feedback-card,
.contact-wrap {
  background: #080808;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb-card:hover,
.stat-card:hover,
.feedback-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  text-align: center;
}

.stat-card {
  padding: 32px 20px;
  border-radius: 28px;
  min-width: 180px;
  flex: 1;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ef1f1f;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.6;
}

/* feedback */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feedback-card {
  padding: 28px;
  border-radius: 24px;
}

.stars {
  color: #ef1f1f;
  margin-bottom: 18px;
}

.stars i {
  margin-right: 0;
  font-size: 16px; 
}

.stars i:last-child {
  margin-right: 0;
}

.feedback-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.6;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.client .avatar {
  width: 44px;
  height: 44px;
  background: #0C0C0C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #ef1f1f;
}

.client h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.client p {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.5;
}

.client div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

  /* gallery */
.row {
  position: relative;
  margin-bottom: 50px;
}

.row-title {
  font-size: 0px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #8da3b5;
}

/* scroll container */
.thumbnails {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 16px;
  cursor: grab;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;

  touch-action: pan-x;
}

.thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnails.dragging {
  cursor: grabbing;
}

.card {
  width: 300px;
  aspect-ratio: 16 / 9;
  background: #080808;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card:hover {
  transform: none;
  box-shadow: none;
}

/* arrows */
.arrow {
  position: absolute;
  pointer-events: all;
  top: 55%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 50;
  }

.arrow:hover {
  background: rgba(255,255,255,0.2);
  }

.arrow.left { left: 8px; }
.arrow.right { right: 8px; }

.arrow::before {
  content: '';
  border: solid white;
  border-width: 0 3px 3px 0;
  padding: 6px;
  display: inline-block;
}

.arrow.left::before { transform: rotate(135deg); }
.arrow.right::before { transform: rotate(-45deg); }


/* contact form */
.contact-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  background: #080808;
  border-radius: 28px;
  padding: 36px;
}
.contact-info {
  flex: 1;
}
.contact-info h3 {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0.9;
  letter-spacing: -1px
}
.contact-info p {
  margin-bottom: 16px;
  color: #ffffff;
  opacity: 0.6;
}
.contact-form {
  flex: 1.5;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #0d0d0d;
  color: #f5f5f5;
  border: none;
  transition: 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: none;
}
button[type="submit"] {
  background: #ef1f1f;
  color: #0f0f0f;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  padding: 10px 28px;
  cursor: pointer;
}

/* footer */
.footer {
  background: #080808;
  padding: 26px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* left */
.footer-copy {
  color: #ffffff;
  opacity: 0.6;
  font-size: 0.85rem;
}

/* middle socials */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000000;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-decoration: none;

  transition: transform 0.18s ease;
}

.social-links a:hover {
  transform: scale(1.08);
}

.social-links i {
  font-size: 14px;
  line-height: 1;
}

/* right links */
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  opacity: 1;
}

/* mobile */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copy,
  .footer-links {
    justify-content: center;
  }
}

/* responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 14px;
  }
    .card {
    width: 150px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .contact-wrap {
    padding: 24px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .contact-form button[type="submit"] {
  display: block;
  margin: 0 auto;
  }
  .contact-info .badge:nth-child(2) {
  display: none;
  }
  
  .navbar {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }
  .nav-inner {
    width: auto;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    margin: 0 auto;
  }
  .nav-inner .nav-links {
    gap: 10px;
  }
  .nav-inner .nav-links a {
    font-size: 12px;
  }
  .nav-cta {
    padding: 5px 10px;
    font-size: 12px;
  }
  .nav-links a[href="#impact"] {
    display: none;
  }
  .style-badges .badge:nth-child(2) {
    display: none;
  }
  
  .legal-page .navbar {
    width: auto; 
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }
  .legal-page .nav-inner {
    width: auto; 
    justify-content: space-between; 
    gap: 12px; 
    padding: 8px 12px; 
    margin: 0 auto; 
  }
  .legal-page .nav-inner .nav-links {
    gap: 10px;
  }
  .legal-page .nav-inner .nav-links a {
    font-size: 12px;
  }
  .legal-page .nav-cta {
    padding: 5px 10px;
    font-size: 12px;
  }
  .legal-page .nav-links a[href$="#impact"] {
    display: none;
  }
}