/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
}

/* ── Animations ───────────────────────────────────────── */
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered elements */
.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim.from-left  { transform: translateX(-44px); }
.anim.from-right { transform: translateX(44px); }

.anim.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.anim-d1 { transition-delay: 0.10s; }
.anim-d2 { transition-delay: 0.20s; }
.anim-d3 { transition-delay: 0.30s; }
.anim-d4 { transition-delay: 0.40s; }
.anim-d5 { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; transform: none; transition: none; }
  .navbar { animation: none; }
  .hero-content { animation: none; opacity: 1; }
}

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: navSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

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

/* ── Hero Section ─────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url('images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay so text stays readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #E9CA7B;
  letter-spacing: 1px;
}

.hero-heading span {
  color: #E9CA7B;
  font-weight: 900;
}

.hero-name {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 16px;
  width: 100%;
  text-align: center;
}

/* ── About Me Section ─────────────────────────────────── */
.about {
  background-color: #0d0d0d;
  color: #f0f0f0;
  padding: 120px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-frame {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  width: 100%;
}

/* Left: Profile image with gold offset frame */
.about-image {
  flex-shrink: 0;
  width: 280px;
  height: 380px;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid #E9CA7B;
  border-radius: 4px;
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Right: Text */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #E9CA7B;
}

.about-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.3;
}

.about-role {
  font-weight: 300;
  color: white;
}

.about-para {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  border-left: 2px solid #E9CA7B;
  padding-left: 20px;
}

.about-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  text-decoration: none;
  color: #E9CA7B;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid #E9CA7B;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
  width: fit-content;
}

.about-tiktok i {
  font-size: 1rem;
}

.about-tiktok:hover {
  background: #E9CA7B;
  color: #0d0d0d;
}

/* ── Services Section ─────────────────────────────────── */
.services {
  background-color: #111111;
  padding: 120px 60px;
  display: flex;
  justify-content: center;
}

.services-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.services-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #E9CA7B;
}

.services-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.2;
}

.services-subtext {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid #E9CA7B;
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 202, 123, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(233, 202, 123, 0.1);
  border: 1px solid rgba(233, 202, 123, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E9CA7B;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(233, 202, 123, 0.2);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
}

/* Full-width single card variant */
.service-card--full {
  grid-column: 1 / -1;
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 56px;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E9CA7B;
  text-decoration: none;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.service-more:hover {
  gap: 12px;
  opacity: 0.8;
}

/* ── Contact Section ──────────────────────────────────── */
.contact {
  background-color: #0d0d0d;
  padding: 120px 60px;
  display: flex;
  justify-content: center;
}

.contact-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Left */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #E9CA7B;
}

.contact-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1.2;
}

.contact-heading span {
  color: #E9CA7B;
}

.contact-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  background: #111111;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-info-item:hover {
  border-color: rgba(233, 202, 123, 0.35);
  background: #141414;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(233, 202, 123, 0.1);
  border: 1px solid rgba(233, 202, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E9CA7B;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #f0f0f0;
  letter-spacing: 0.5px;
}

.contact-info-value {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

/* Right: Form */
.contact-right {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 44px 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.form-group input,
.form-group textarea {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #f0f0f0;
  outline: none;
  transition: border-color 0.25s ease;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(233, 202, 123, 0.5);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #E9CA7B;
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease;
  margin-top: 4px;
}

.contact-submit:hover {
  background: #f0d98a;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background-color: #0a0a0a;
  border-top: 2px solid #E9CA7B;
  padding: 70px 60px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 60px;
}

/* Left column */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 300px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(233, 202, 123, 0.35);
  color: rgba(233, 202, 123, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-socials a:hover {
  background: #E9CA7B;
  color: #0a0a0a;
  border-color: #E9CA7B;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.25s ease;
}

.back-to-top:hover {
  color: #E9CA7B;
}

/* Right column */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E9CA7B;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease, padding-left 0.25s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #E9CA7B;
  padding-left: 8px;
}

/* Bottom copyright bar */
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Hamburger Button (hidden on desktop) ─────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0f0f0;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Tablet (≤ 1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar {
    padding: 18px 40px;
  }

  .about {
    padding: 100px 40px;
  }

  .about-frame {
    gap: 48px;
  }

  .about-image {
    width: 240px;
    height: 330px;
  }

  .services {
    padding: 100px 40px;
  }

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

  .service-card--full {
    padding: 44px 40px;
  }

  .contact {
    padding: 100px 40px;
  }

  .contact-inner {
    gap: 48px;
    grid-template-columns: 1fr 1.2fr;
  }

  .contact-right {
    padding: 36px 28px;
  }

  .footer {
    padding: 60px 40px 0;
  }

  .footer-inner {
    gap: 40px;
  }
}

/* ── Mobile (≤ 768px) ─────────────────────────────────── */
@media (max-width: 768px) {

  /* Navbar — hamburger */
  .navbar {
    padding: 16px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 999;
  }

  .nav-links.open {
    max-height: 320px;
    padding: 16px 0 24px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .nav-links a::after {
    display: none;
  }

  /* Reduce side animations to fade-up on mobile */
  .anim.from-left,
  .anim.from-right {
    transform: translateY(32px);
  }

  /* Hero */
  .hero-name {
    letter-spacing: 2px;
  }

  /* About */
  .about {
    padding: 80px 24px;
  }

  .about-frame {
    flex-direction: column;
    gap: 56px;
    text-align: center;
  }

  .about-image {
    width: 220px;
    height: 300px;
    margin: 0 auto;
  }

  .about-image::before {
    top: -10px;
    left: -10px;
  }

  .about-para {
    text-align: left;
  }

  .about-tiktok {
    margin: 0 auto;
  }

  /* Services */
  .services {
    padding: 80px 24px;
  }

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

  .service-card--full {
    padding: 36px 24px;
  }

  /* Contact */
  .contact {
    padding: 80px 24px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-label,
  .contact-heading,
  .contact-sub {
    text-align: center;
  }

  .contact-right {
    padding: 32px 20px;
  }

  .contact-submit {
    width: 100%;
  }

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

  .contact-info-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  /* Footer */
  .footer {
    padding: 56px 24px 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 44px;
  }

  .footer-left {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-inner {
    text-align: center;
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
  }
}


/* ── Small mobile (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-name {
    letter-spacing: 1.5px;
    font-size: 0.78rem;
  }

  .about {
    padding: 72px 20px;
  }

  .about-image {
    width: 180px;
    height: 260px;
  }

  .services {
    padding: 72px 20px;
  }

  .service-card {
    padding: 30px 22px;
  }

  .service-card--full {
    padding: 30px 22px;
  }

  .contact {
    padding: 72px 20px;
  }

  .contact-inner {
    gap: 36px;
  }

  .contact-info {
    gap: 10px;
  }

  .contact-right {
    padding: 28px 16px;
  }

  .footer {
    padding: 48px 20px 0;
  }

  .footer-inner {
    gap: 32px;
    padding-bottom: 36px;
  }
}
