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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #222 0, #050505 40%, #000 100%);
  color: #fdfdfd;
  min-height: 100vh;
}

/* -------- Layout -------- */
.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

section {
  padding: 5rem 0 4rem;
}

.section-title {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #b4913c);
}

/* -------- Navigation -------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-left img {
  height: 100px;   /* Bigger logo on desktop */
  width: auto;
}

/* Slightly smaller on mobile so it fits nicely */
@media (max-width: 768px) {
  .nav-left img {
    height: 86px;
  }
}

.nav-left .brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #aaa;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f5f5f5;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #b4913c);
  transition: width 0.25s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* -------- Hero section -------- */
.hero {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #aaa;
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4.1vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(120deg, #ffffff, #b4913c);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 480px;
  color: #bdbdbd;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.badge {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ddd;
}

.hero-cta {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #b4913c);
  color: #000;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #f5f5f5;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* hero right */
.hero-media {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

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

.hero-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* small about section on home */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.about-text p {
  margin-bottom: 0.9rem;
  color: #d0d0d0;
  font-size: 0.98rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.highlight-card {
  padding: 1rem;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(15, 15, 15, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.9rem;
}

.highlight-number {
  font-size: 1.4rem;
  font-weight: 500;
}

.highlight-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #bdbdbd;
}

/* -------- Social media strip -------- */
.social-strip {
  margin-top: 3rem;
  border-radius: 20px;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 1.4rem;
  align-items: center;
}

.social-strip-intro {
  font-size: 0.95rem;
  color: #e3e3e3;
}

.social-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.profile-card {
  flex: 1 1 150px;
  min-width: 160px;
  border-radius: 16px;
  padding: 0.8rem 1rem;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  border-color: #b4913c;
}

.profile-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-handle {
  font-size: 0.78rem;
  color: #cfcfcf;
  word-break: break-all;
}

.profile-meta {
  font-size: 0.75rem;
  color: #aaaaaa;
}

/* -------- Services page -------- */
.services-intro {
  max-width: 520px;
  color: #d0d0d0;
  font-size: 0.97rem;
}

.services-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.price-card {
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(15, 15, 15, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-card h3 {
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.price-card p {
  color: #c9c9c9;
  font-size: 0.92rem;
}

.price-tagline {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #e2e2e2;
}

.price-note {
  margin-top: 0.9rem;
  font-size: 0.83rem;
  color: #b8b8b8;
}

.price-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.price-item span:last-child {
  white-space: nowrap;
  color: #f4f4f4;
}

.services-side-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 260px;
}

.services-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------- Contact page -------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.8rem;
}

.contact-intro {
  color: #d0d0d0;
  font-size: 0.97rem;
}

.contact-intro p + p {
  margin-top: 0.7rem;
}

.contact-card {
  margin-top: 1.5rem;
  border-radius: 20px;
  padding: 1.4rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), rgba(10, 10, 10, 1));
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.9rem;
}

.contact-card dt {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #bbbbbb;
}

.contact-card dd {
  margin-bottom: 0.8rem;
  color: #f3f3f3;
}

/* form */
.contact-form {
  margin-top: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #c1c1c1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.85);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b4913c;
  box-shadow: 0 0 0 1px rgba(180, 145, 60, 0.4);
  background: rgba(5, 5, 5, 0.95);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* success / error messages (JS) */
.form-message {
  margin-top: 0.7rem;
  font-size: 0.85rem;
}

/* -------- Footer -------- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 0 1.3rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #b8b8b8;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-menu a {
  text-decoration: none;
  color: #d0d0d0;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-menu a:hover {
  color: #ffffff;
}

/* -------- WhatsApp floating widget -------- */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  z-index: 1400;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
}

/* -------- Particles background container -------- */
#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* ensure content sits above particles */
main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .services-grid,
  .contact-wrapper,
  .social-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-inner {
    gap: 2.2rem;
  }

  .social-strip {
    padding: 1rem;
  }
}

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

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.96);
    flex-direction: column;
    padding: 0.9rem 1.25rem 1.1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.23s ease, opacity 0.23s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar {
    position: relative;
  }

  section {
    padding-top: 4rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .badge {
    font-size: 0.75rem;
  }

  footer {
    text-align: center;
  }

  .footer-content {
    justify-content: center;
  }
}
