/* ===== HOMEPAGE STYLESHEET : GRAPHITE + AMBER ===== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: #1E1E1E;
  background-color: #FFFDF7;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.site-navbar {
  background-color: #1A1A1A;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.site-navbar .brand {
  font-size: 20px;
  font-weight: 800;
  color: #EAB308;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.site-navbar .nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-navbar .nav-links a {
  color: #E5E5E0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-navbar .nav-links a:hover {
  color: #EAB308;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2210 100%);
  color: #FFFFFF;
  padding: 140px 24px 100px 24px;
  text-align: center;
  margin-top: 0;
}

.hero-section .hero-badge {
  display: inline-block;
  background-color: #EAB308;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-section h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 0 auto 20px auto;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #FFFFFF;
  max-width: 800px;
}

.hero-section h1 span {
  color: #EAB308;
}

.hero-section .hero-subtitle {
  font-size: 20px;
  color: #C0C0C0;
  margin: 0 auto 36px auto;
  max-width: 640px;
  line-height: 1.6;
}

.hero-section .hero-cta {
  display: inline-block;
  background-color: #EAB308;
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.2s;
}

.hero-section .hero-cta:hover {
  background-color: #CA8A04;
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section-intro {
  max-width: 720px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #A16207;
  margin-bottom: 12px;
}

.section-intro h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1A1A1A;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.section-intro p {
  font-size: 17px;
  color: #5C5C5C;
  margin: 0;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 80px 24px;
  background-color: #FFFDF7;
}

.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.about-section .about-visual {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  border-radius: 12px;
  padding: 48px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.about-section .about-visual .stat-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.about-section .about-visual .stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: #EAB308;
  margin: 0 0 4px 0;
}

.about-section .about-visual .stat-item p {
  font-size: 14px;
  color: #C0C0C0;
  margin: 0;
}

.about-section .about-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 16px 0;
}

.about-section .about-text p {
  font-size: 16px;
  color: #5C5C5C;
  margin: 0 0 16px 0;
  line-height: 1.8;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 80px 24px;
  background-color: #FEF9E0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 36px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid #EAB308;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card .service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 10px 0;
}

.service-card p {
  font-size: 15px;
  color: #5C5C5C;
  margin: 0;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process-section {
  padding: 80px 24px;
  background-color: #FFFDF7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 36px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #EAB308;
  color: #1A1A1A;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 8px 0;
}

.process-step p {
  font-size: 14px;
  color: #5C5C5C;
  margin: 0;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 24px;
  background-color: #FEF9E0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  border-left: 3px solid #EAB308;
}

.testimonial-card .testimonial-text {
  font-size: 15px;
  color: #3D3D3D;
  line-height: 1.8;
  margin: 0 0 16px 0;
  font-style: italic;
}

.testimonial-card .testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

.testimonial-card .testimonial-role {
  font-size: 13px;
  color: #A16207;
  margin: 4px 0 0 0;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 24px;
  background-color: #FFFDF7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item .feature-marker {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #EAB308;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 6px 0;
}

.feature-item p {
  font-size: 15px;
  color: #5C5C5C;
  margin: 0;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 72px 24px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2210 100%);
  text-align: center;
  color: #FFFFFF;
}

.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 auto 16px auto;
  max-width: 600px;
  color: #FFFFFF;
}

.cta-banner p {
  font-size: 18px;
  color: #C0C0C0;
  margin: 0 auto 32px auto;
  max-width: 560px;
}

.cta-banner .cta-btn {
  display: inline-block;
  background-color: #EAB308;
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.cta-banner .cta-btn:hover {
  background-color: #CA8A04;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 24px;
  background-color: #FFFDF7;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 16px 0;
}

.contact-info p {
  font-size: 16px;
  color: #5C5C5C;
  margin: 0 0 24px 0;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #3D3D3D;
}

.contact-detail .contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #1A1A1A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #EAB308;
}

.contact-form {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D4D4D0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #1E1E1E;
  background-color: #FAFAFA;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #EAB308;
  background-color: #FFFFFF;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: #EAB308;
  color: #1A1A1A;
  border: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  width: 100%;
}

.contact-form button:hover {
  background-color: #CA8A04;
}

.form-success {
  display: none;
  background-color: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #15803D;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 16px;
}

.form-success.visible {
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #1A1A1A;
  color: #E5E5E0;
  padding: 48px 24px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto 40px auto;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.footer-col p {
  font-size: 14px;
  color: #B0B0B0;
  margin: 0 0 8px 0;
  line-height: 1.7;
}

.footer-col p a {
  color: #EAB308;
  text-decoration: none;
}

.footer-col p a:hover {
  color: #FFFFFF;
}

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

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

.footer-col ul li a {
  color: #B0B0B0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #EAB308;
}

.footer-bottom {
  border-top: 1px solid #333333;
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #808080;
}

.footer-bottom a {
  color: #EAB308;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* ===== SCROLL REVEAL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .site-navbar .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }

  .site-navbar .nav-links.active {
    display: flex;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .hero-section .hero-subtitle {
    font-size: 17px;
  }

  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-intro h2 {
    font-size: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section {
    padding: 120px 16px 64px 16px;
  }

  .about-section,
  .services-section,
  .process-section,
  .testimonials-section,
  .features-section,
  .contact-section {
    padding: 56px 16px;
  }

  .cta-banner h2 {
    font-size: 26px;
  }
}
