  /* ── Base & Reset ── */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body { margin: 0; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; height: auto; }

  /* ── Geometric Shapes ── */
  .geo-shape {
    position: absolute;
    pointer-events: none;
  }

  .geo-circle-1 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, #F5A623 0%, #fcd34d 100%);
    border-radius: 50%;
    top: 10%; left: -80px;
    opacity: 0.08;
  }

  .geo-circle-2 {
    width: 180px; height: 180px;
    background: linear-gradient(135deg, #6B2F5B 0%, #ec6aa3 100%);
    border-radius: 50%;
    top: 60%; right: 5%;
    opacity: 0.07;
  }

  .geo-circle-3 {
    width: 100px; height: 100px;
    background: #F5A623;
    border-radius: 50%;
    top: 30%; right: 15%;
    opacity: 0.1;
  }

  .geo-square-1 {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #6B2F5B, #ec6aa3);
    border-radius: 16px;
    top: 70%; left: 10%;
    opacity: 0.06;
    transform: rotate(45deg);
  }

  .geo-square-2 {
    width: 60px; height: 60px;
    background: #F5A623;
    border-radius: 12px;
    top: 15%; right: 25%;
    opacity: 0.08;
    transform: rotate(20deg);
  }

  .geo-triangle-1 {
    width: 0; height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid #6B2F5B;
    top: 45%; left: 3%;
    opacity: 0.05;
    transform: rotate(-15deg);
  }

  /* ── Geometric Pattern (footer) ── */
  .geo-pattern {
    background-image:
      linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
      linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
      linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
      linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
      linear-gradient(60deg, #fff7 25%, transparent 25.5%, transparent 75%, #fff7 75%, #fff7),
      linear-gradient(60deg, #fff7 25%, transparent 25.5%, transparent 75%, #fff7 75%, #fff7);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  }

  /* ── Animations ── */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  @keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
  }

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

  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .animate-float {
    animation: float 3.5s ease-in-out infinite;
  }

  .animate-float-delayed {
    animation: float-delayed 4s ease-in-out infinite;
    animation-delay: 1s;
  }

  /* ── Scroll Reveal ── */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Hero Animations ── */
  .hero-content {
    animation: slideInLeft 0.8s ease forwards;
  }

  .hero-image {
    animation: slideUp 0.8s ease 0.2s both;
  }

  /* ── Navigation ── */
  #navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  }

  #navbar.scrolled {
    box-shadow: 0 4px 30px rgba(107, 47, 91, 0.1);
  }

  .nav-link {
    position: relative;
  }

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

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

  /* ── Service Cards ── */
  .service-card {
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #6B2F5B, #F5A623);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  /* ── Mobile Menu ── */
  #mobileMenu.open .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #mobileMenu.open .menu-line:nth-child(2) {
    opacity: 0;
  }
  #mobileMenu.open .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 24px;
  }

  /* ── Custom Scrollbar ── */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #fdf0f7; }
  ::-webkit-scrollbar-thumb { background: #6B2F5B; border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: #5a274d; }

  /* ── Selection ── */
  ::selection { background: #F5A623; color: white; }
