@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

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

:root {
  --accent: #1a1a1a;
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-card: #ffffff;
  --black: #000000;
  --dark: #1a1a1a;
  --gray: #e8e8e8;
  --gray-dark: #d0d0d0;
  --text: #000000;
  --text-muted: #000000;
  --text-light: #000000;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 60px;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark); text-decoration: none; letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: #666; text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--dark); transition: width 0.3s;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: var(--dark); border: 1px solid var(--dark);
  color: var(--white); padding: 10px 28px;
  font-family: 'Poppins', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.nav-btn:hover { background: transparent; color: var(--dark); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--dark); transition: all 0.3s; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  height: 100vh;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.hero-deco-line {
  position: absolute;
  width: 1px; height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
  top: 35%;
}
.hero-deco-line--left { left: 15%; }
.hero-deco-line--right { right: 15%; }
.hero-center {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none; z-index: 2;
}
.hero-badge {
  border: 1px solid rgba(0,0,0,0.15);
  padding: 8px 24px; margin-bottom: 30px;
  font-size: 0.65rem; letter-spacing: 5px;
  text-transform: uppercase; color: #666;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 800; color: var(--dark);
  text-align: center; line-height: 1.05;
  animation: fadeInDown 1s ease 0.5s both;
}
.hero-title em { font-style: italic; font-weight: 300; }
.hero-subtitle {
  font-size: 0.8rem; letter-spacing: 3px;
  text-transform: uppercase; color: #666;
  margin-top: 22px; text-align: center;
  animation: fadeInDown 1s ease 0.7s both;
}
.hero-actions {
  display: flex; gap: 16px; margin-top: 44px;
  animation: fadeInDown 1s ease 0.9s both;
  pointer-events: all;
}
.btn-primary {
  background: var(--dark); color: var(--white);
  padding: 15px 38px; border: 2px solid var(--dark); cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--dark); }
.btn-outline {
  background: transparent; color: var(--dark);
  padding: 15px 38px; border: 2px solid rgba(0,0,0,0.2);
  cursor: pointer; font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; display: inline-block;
}
.btn-outline:hover { border-color: var(--dark); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 10;
}
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 3px; color: rgba(0,0,0,0.3); }
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  animation: scrollAnim 2s ease infinite;
}

/* DIVIDER */
.section-divider {
  width: 50px; height: 2px;
  background: var(--dark);
  margin: 0 auto 24px;
}

/* SECTION BASE */
.section { padding: 120px 60px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
  font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px; display: block;
  font-weight: 600;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800; color: var(--dark); line-height: 1.15;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-desc {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 560px; margin: 20px auto 0; line-height: 2;
}

/* ABOUT */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: brightness(0.95);
}
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 55%; aspect-ratio: 1; object-fit: cover;
  border: 4px solid var(--bg-soft); filter: brightness(0.9);
}
.about-years {
  position: absolute; top: 30px; left: -20px;
  background: var(--dark); color: var(--white);
  padding: 20px 24px; text-align: center;
}
.about-years strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 800; line-height: 1;
}
.about-years span { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.about-text { padding: 20px 0; }
.about-text .section-label { text-align: left; margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 24px;
}
.about-text h2 em { font-style: italic; font-weight: 300; }
.about-text p { color: var(--text-muted); line-height: 2; margin-bottom: 18px; font-size: 1rem; }
.about-stats {
  display: flex; gap: 40px; margin: 40px 0;
  border-top: 1px solid var(--gray); padding-top: 40px;
}
.stat strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 2.5rem; color: var(--dark); font-weight: 800;
}
.stat span { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }

/* WHO IS SECTION */
.whois { background: var(--bg); }
.whois-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.whois-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.94);
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.whois-text .section-label { text-align: left; margin-bottom: 12px; }
.whois-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem); font-weight: 800;
  color: var(--dark); line-height: 1.15; margin-bottom: 28px;
}
.whois-text h2 em { font-style: italic; font-weight: 300; }
.whois-text p { color: var(--text-muted); line-height: 2; margin-bottom: 20px; font-size: 1rem; }
.whois-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.whois-tag {
  border: 1px solid var(--gray-dark); padding: 8px 18px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: all 0.3s; cursor: default; font-weight: 500;
}
.whois-tag:hover { border-color: var(--dark); color: var(--dark); }

/* SERVICES */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  padding: 44px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark), #555);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 {
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 16px; transition: color 0.3s;
}
.service-card p {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.9;
}

/* WHY US */
.whyus { background: var(--bg); }
.whyus-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.why-card {
  background: var(--bg-card);
  padding: 48px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark), #555);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  font-size: 4rem; font-weight: 800;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1; margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.4s;
}
.why-card:hover .why-num {
  color: rgba(0, 0, 0, 0.12);
}
.why-card h3 {
  font-size: 1rem; font-weight: 600; color: var(--dark);
  margin-bottom: 14px; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.why-card p {
  color: var(--text-muted); font-size: 0.92rem; line-height: 2;
}

/* GALLERY */
.gallery { background: var(--bg-soft); padding: 120px 0; }
.gallery .section-header { padding: 0 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; min-height: 250px; object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.85);
}
.gallery-item:first-child img { min-height: 500px; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,0.6); padding: 8px 20px;
}

/* PROCESS */
.process { background: var(--bg); }
.process-steps {
  display: flex; gap: 0; max-width: 1000px; margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gray-dark), transparent);
}
.step {
  flex: 1; text-align: center; padding: 0 30px; position: relative;
}
.step-num {
  width: 56px; height: 56px; border: 1px solid var(--gray-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; background: var(--bg);
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark);
  position: relative; z-index: 1;
}
.step h4 {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); margin-bottom: 12px; font-weight: 700;
}
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; }

/* TESTIMONIALS */
.testimonials { background: var(--bg-soft); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.testimonial {
  background: var(--bg-card); padding: 44px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.testimonial-stars { color: #d4a853; font-size: 0.85rem; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-style: italic; color: var(--text);
  line-height: 1.9; margin-bottom: 28px; font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--gray);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--dark); font-weight: 700;
}
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.author-service { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* CONTACT */
.contact { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; max-width: 1200px; margin: 0 auto;
}
.contact-grid--center {
  grid-template-columns: 1fr;
  max-width: 680px;
}
.contact-info .section-label { text-align: left; }
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem); font-weight: 800;
  color: var(--dark); margin-bottom: 20px; line-height: 1.2;
}
.contact-info h2 em { font-style: italic; font-weight: 300; }
.contact-info p { color: var(--text); line-height: 2; margin-bottom: 40px; font-size: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px; border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 1rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; font-weight: 700; }
.contact-item-text span { color: var(--text); font-size: 0.95rem; }

/* WHATSAPP CTA */
.whatsapp-cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: #25D366; color: #fff;
  padding: 16px 36px; border-radius: 4px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.25);
  margin-top: 8px;
}
.whatsapp-cta-btn:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid rgba(0,0,0,0.08); padding: 60px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--dark);
}
.footer-copy { color: #666; font-size: 0.82rem; }
.footer-socials { display: flex; gap: 14px; }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #666; text-decoration: none; font-size: 0.9rem;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--dark); color: var(--dark); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse 2.5s infinite; text-decoration: none; font-size: 1.5rem;
}

/* INSTAGRAM FLOAT */
.ig-float {
  position: fixed; bottom: 100px; right: 30px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  text-decoration: none;
  transition: all 0.3s;
}
.ig-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 1024px) {
  .section { padding: 80px 30px; }
  .navbar { padding: 18px 30px; }
  .navbar.scrolled { padding: 12px 30px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:first-child img { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid, .whois-grid { grid-template-columns: 1fr; gap: 50px; }
  .whyus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.6rem; }
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0; width: 260px;
    background: var(--white); padding: 80px 40px;
    gap: 30px; z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.open a { color: var(--text-muted); }
  .nav-links.open a:hover { color: var(--dark); }
  .nav-links.open a::after { background: var(--dark); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-steps::before { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .about-img-accent { display: none; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .whyus-grid { grid-template-columns: 1fr; }
}
