        :root {
          --bg: #f7f9fc;
          --surface: #ffffff;
        
          --text: #0f172a;
          --text-muted: #475569;
        
          --primary: #5b6cff;
          --primary-soft: #eef0ff;
        
          --border: #e5e7eb;
        
          /* LIGHT HERO → LEBIH TERANG & KEBACA */
          --gradient: linear-gradient(
            135deg,
            #6d7cff,
            #8b9cff
          );
        
          --logo-outline: #0f172a;
          /* Portfolio */
          --portfolio-card: var(--surface);
          --portfolio-text: var(--text);
          --portfolio-muted: var(--text-muted);
          --portfolio-tag-bg: #f0f2f5;
          --portfolio-tag-text: #64748b;
          --portfolio-shadow: 0 10px 30px rgba(0,0,0,.06);
          --portfolio-overlay: rgba(91,108,255,.92);
        }
        
        [data-theme="dark"] {
          --bg: #0b1020;
        
          /* SURFACE DIANGKAT SEDIKIT */
          --surface: #151c3a;
        
          --text: #e5e7eb;
          --text-muted: #a8b0cc;
        
          --primary: #8fa0ff;
          --primary-soft: rgba(143,160,255,0.16);
        
          --border: #24315a;
        
          /* DARK HERO & AKSEN */
          --gradient: linear-gradient(
            135deg,
            #8fa0ff,
            #5b6cff
          );
        
          --logo-outline: #e5e7eb;
          
          --portfolio-card: #161d3a;
          --portfolio-text: #e5e7eb;
          --portfolio-muted: #a8b0cc;
          --portfolio-tag-bg: rgba(255,255,255,.08);
          --portfolio-tag-text: #c7d2fe;
          --portfolio-shadow: 0 25px 60px rgba(0,0,0,.55);
          --portfolio-overlay: rgba(124,140,255,.92);
        }


        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
        
        body {
          background: var(--bg);
          color: var(--text);
          font-family: 'Inter', system-ui, sans-serif;
          transition: background .3s ease, color .3s ease;
        }
        
        header {
          position: fixed;
          top: 0;
          width: 100%;
          z-index: 1000;
          padding: 1rem 2rem;
        
          background: color-mix(in srgb, var(--surface) 92%, transparent);
          backdrop-filter: blur(14px);
        
          border-bottom: 1px solid var(--border);
          transition: all .3s ease;
        }
        
        .header-scrolled {
          padding: .7rem 2rem;
        }
        
        nav {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }
        
        .logo {
          height: 40px;
          transition: filter .3s ease;
        }
        
        [data-theme="dark"] .logo {
          filter:
            drop-shadow(1px 0 0 var(--logo-outline))
            drop-shadow(-1px 0 0 var(--logo-outline))
            drop-shadow(0 1px 0 var(--logo-outline))
            drop-shadow(0 -1px 0 var(--logo-outline))
            drop-shadow(0 0 6px rgba(124,140,255,.6));
        }

        .header-scrolled .logo {
          height: 35px;
        }
        
        @media (max-width: 768px) {
          .logo { height: 26px; }
          .header-scrolled .logo { height: 22px; }
        }
        
        .nav-links {
          display: flex;
          gap: 2rem;
        }
        
        .nav-links a {
          color: var(--text);
          text-decoration: none;
          font-size: .95rem;
          font-weight: 500;
          position: relative;
          transition: color .3s ease;
        }
        
        .nav-links a::after {
          content: '';
          position: absolute;
          left: 0;
          bottom: -6px;
          width: 0;
          height: 2px;
          background: var(--gradient);
          transition: width .3s ease;
        }
        
        .nav-links a:hover {
          color: var(--primary);
        }
        
        .nav-links a:hover::after {
          width: 100%;
        }
        
        .cta-button {
          background: var(--gradient);
          color: #fff;
          padding: .7rem 1.5rem;
          border-radius: 30px;
          border: none;
          font-weight: 600;
          cursor: pointer;
          transition: transform .3s ease, box-shadow .3s ease;
          box-shadow: 0 6px 20px rgba(90,100,255,.3);
        }
        
        .cta-button:hover {
          transform: translateY(-3px);
        }
        
        .hamburger {
          display: none;
          width: 28px;
          height: 20px;
          background: none;
          border: none;
          cursor: pointer;
          flex-direction: column;
          justify-content: space-between;
        }
        
        .hamburger span {
          width: 100%;
          height: 3px;
          background: var(--text);
          border-radius: 3px;
          transition: .3s ease;
        }
        
        .mobile-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 85%;
          max-width: 320px;
          height: 100vh;
          background: var(--surface);
          transition: background .3s ease, color .3s ease;
          padding: 5rem 2rem;
          transition: right .4s ease;
          z-index: 2000;
          display: flex;
          flex-direction: column;
        }
        
        .mobile-menu.active {
          right: 0;
        }
        
        .mobile-menu a {
          padding: 1rem 0;
          color: var(--text);
          border-bottom: 1px solid var(--border);
          transition: background .3s ease, color .3s ease, border .3s ease;
          text-decoration: none;
        }
        .menu-close {
          position: absolute;
          top: 18px;
          right: 18px;
          background: none;
          border: none;
          font-size: 1.6rem;
          color: var(--text);
          cursor: pointer;
        }

        
        @media (max-width: 992px) {

          /* menu desktop hilang */
          .nav-links {
            display: none;
          }
        
          /* toggle DESKTOP hilang */
          nav .theme-toggle:not(.mobile-toggle) {
            display: none;
          }
        
          /* hamburger muncul */
          .hamburger {
            display: flex;
          }
        
          /* toggle MOBILE muncul */
          .mobile-menu .mobile-toggle {
              display: flex;
              align-items: center;
              justify-content: center;
              gap: 14px;
              margin-top: 100%;
              padding: 16px;
              border-radius: 16px;
              border: 1px solid var(--border);
              background: linear-gradient(
                135deg,
                var(--surface),
                var(--primary-soft)
              );
              color: var(--text);
              transition: all .3s ease;
          }
        }


        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 2rem 2rem;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-button {
            padding: 0.9rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .primary-btn {
            background: var(--gradient);
            color: #fff;
            border-radius: 999px;
            padding: 0.75rem 1.6rem;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(91,108,255,.35);
        }
        
        .secondary-btn {
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text);
        }
        
        .hero-button:hover {
            transform: translateY(-3px);
        }
        
        .primary-btn:hover {
            box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
        }
        
        .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Features Section */
        .features {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: var(--surface);
            border: 1px solid var(--border);
            box-shadow: 0 12px 40px rgba(0,0,0,.08);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .feature-card p {
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials {
          padding: 6rem 2rem;
          background: linear-gradient(
            180deg,
            var(--bg) 0%,
            var(--primary-soft) 100%)
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
          background: var(--surface);
          border: 1px solid var(--border);
          padding: 2rem;
          border-radius: 18px;
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
          transition: transform .3s ease, box-shadow .3s ease;
        }
        
        .testimonial-card:hover {
              transform: translateY(-6px);
              box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
            }
            
        .testimonial-text {
          font-family: 'Inter', sans-serif;
          font-size: 0.95rem;
          color: var(--text-muted);
          margin-bottom: 1.6rem;
          line-height: 1.7;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }
        
        .author-avatar {
          width: 46px;
          height: 46px;
          border-radius: 50%;
          background: var(--primary-soft);
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 700;
          font-family: 'Manrope', sans-serif;
          color: var(--primary);
        }

        
        .author-info h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            margin: 0;
        }
        
        .author-info p {
          font-size: 0.8rem;
          color: var(--text-muted);
          margin: 0;
        }
        
        /*theme-toggle*/
        .theme-toggle {
          width: 42px;
          height: 42px;
          border-radius: 50%;
          border: 1px solid var(--border);
          background: var(--surface);
          color: var(--text);
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all .3s ease;
          margin-left: 1rem;
          display: flex;
        }
        
        .theme-toggle:hover {
          background: var(--accent);
          color: #fff;
          box-shadow: 0 6px 20px rgba(108,99,255,.35);
        }
        

        
        /* ================= HERO SLIDER ================= */

        .hero-slider {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        /* Slide */
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.05);
            transition: opacity 1s ease, transform 1.2s ease;
        }
        
        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Overlay gelap */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                rgba(0,0,0,0.65),
                rgba(0,0,0,0.75)
            );
            z-index: 1;
        }
        
        /* Content */
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 6rem 2rem 2rem;
        }
        
        /* Button link fix */
        .hero-button a {
            text-decoration: none;
            color: white;
        }
        
        /* Navigation dots */
        .hero-nav {
            position: absolute;
            bottom: 30px;
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        
        .hero-nav .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,.4);
            cursor: pointer;
            transition: all .3s ease;
        }
        
        .hero-nav .dot.active {
            background: white;
            transform: scale(1.3);
        }
        
        /* Mobile text */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
        }

        
        /* ===== TOAST NOTIFICATION ===== */
        .toast {
          position: fixed;
          top: 30px;
          right: -400px;
          min-width: 300px;
          padding: 16px 20px;
          border-radius: 14px;
          color: white;
          display: flex;
          align-items: center;
          gap: 12px;
          font-weight: 500;
          box-shadow: 0 20px 40px rgba(0,0,0,0.4);
          z-index: 2000;
          animation: slideIn 0.6s forwards, slideOut 0.6s forwards 3.5s;
        }
        
        /* ICON */
        .toast .icon {
          font-size: 1.4rem;
        }
        
        /* SUCCESS ADD */
        .toast.success_add {
          background: linear-gradient(135deg, #22c55e, #16a34a);
        }
        .toast.success_add .icon::before {
          content: "✅";
        }
        
        /* SUCCESS EDIT */
        .toast.success_edit {
          background: linear-gradient(135deg, #3b82f6, #2563eb);
        }
        .toast.success_edit .icon::before {
          content: "✏️";
        }
        
        /* SUCCESS DELETE */
        .toast.success_delete {
          background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        .toast.success_delete .icon::before {
          content: "🗑️";
        }
        
        /* ANIMATION */
        @keyframes slideIn {
          to {
            right: 30px;
          }
        }
        
        @keyframes slideOut {
          to {
            right: -400px;
            opacity: 0;
          }
        }
        
        
        /* ===== CTA BASE ===== */
        .cta-section {
          padding: 7rem 2rem;
          position: relative;
          overflow: hidden;
          background: linear-gradient(
            135deg,
            var(--primary) 0%,
            #8b7cff 100%
          );
        }
        
        .cta-content {
          max-width: 820px;
          margin: 0 auto;
          padding: 3.8rem 3rem;
          border-radius: 30px;
          text-align: center;
          background: rgba(255,255,255,0.12);
          backdrop-filter: blur(14px);
          border: 1px solid rgba(255,255,255,0.25);
        }
        
        .cta-content h2 {
          font-family: 'Manrope', sans-serif;
          font-size: clamp(2rem, 4vw, 2.6rem);
          font-weight: 700;
          letter-spacing: -0.02em;
          margin-bottom: 1.2rem;
          color: #fff;
        }
        
        .cta-content p {
          font-family: 'Inter', sans-serif;
          font-size: 1.05rem;
          line-height: 1.7;
          color: rgba(255,255,255,0.9);
          margin-bottom: 2.8rem;
        }
        
        .cta-button {
          background: #fff;
          color: var(--primary);
          font-family: 'Manrope', sans-serif;
          font-weight: 600;
          padding: 0.9rem 2.4rem;
          border-radius: 999px;
          border: none;
          cursor: pointer;
          font-size: 0.95rem;
          box-shadow: 0 18px 40px rgba(0,0,0,.25);
          transition: all .3s ease;
        }
        
        .cta-button a {
          text-decoration: none;
          color: inherit;
        }
        
        .cta-button:hover {
          transform: translateY(-4px);
          box-shadow: 0 26px 60px rgba(0,0,0,.35);
        }

        /* ===== CTA DARK MODE ===== */
        [data-theme="dark"] .cta-section {
          background: radial-gradient(
              circle at top,
              rgba(124,140,255,0.25),
              transparent 60%
            ),
            linear-gradient(
              180deg,
              #0b1020,
              #0f1633
            );
        }
        
        [data-theme="dark"] .cta-content {
          background: rgba(18,24,51,0.75);
          border: 1px solid rgba(124,140,255,0.25);
          box-shadow:
            0 30px 80px rgba(0,0,0,.6),
            inset 0 0 0 1px rgba(255,255,255,.03);
        }
        
        [data-theme="dark"] .cta-content h2 {
          color: #fff;
        }
        
        [data-theme="dark"] .cta-content p {
          color: var(--text-muted);
        }
        
        /* Button versi dark (neon-soft) */
        [data-theme="dark"] .cta-button {
          background: linear-gradient(
            135deg,
            var(--primary),
            #9aa7ff
          );
          color: white;
          box-shadow:
            0 12px 35px rgba(124,140,255,.45),
            0 0 0 1px rgba(255,255,255,.15);
        }
        
        [data-theme="dark"] .cta-button:hover {
          transform: translateY(-4px) scale(1.02);
          box-shadow:
            0 18px 55px rgba(124,140,255,.65);
        }


         /* Portfolio Hero */
        .portfolio-hero {
            padding: 8rem 2rem 4rem;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        .portfolio-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .portfolio-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .portfolio-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Portfolio Filter */
        .portfolio-filter {
          padding: 2rem 2rem 1rem;
          max-width: 1200px;
          margin: 0 auto;
          text-align: center;
        }
        
        .filter-buttons {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1rem;
          margin-top: 1rem;
        }
        
        /* Button default (DESKTOP) */
        .filter-btn {
          background: #fff;
          border: 2px solid #e1e5e9;
          padding: 0.7rem 1.5rem;
          border-radius: 999px;
          cursor: pointer;
          font-weight: 500;
          font-size: 0.95rem;
          color: var(--dark);
          transition: all 0.3s ease;
          white-space: nowrap;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
          background: var(--gradient);
          color: #fff;
          border-color: transparent;
          transform: translateY(-2px);
          box-shadow: 0 6px 18px rgba(108, 99, 255, 0.35);
        }
        
        /* default DESKTOP */
        .label-mobile {
          display: none;
        }
        
        [data-theme="dark"] .filter-btn {
          background: rgba(255,255,255,.04);
          border-color: var(--border);
          color: var(--text-muted);
        }
        
        [data-theme="dark"] .filter-btn:not(.active):hover {
          background: var(--border);
          color: var(--text);
        }
        
        [data-theme="dark"] .filter-btn.active {
          background: var(--border);
        }

        
        /* MOBILE ONLY */
        @media (max-width: 768px) {
        
          .label-desktop {
            display: none;
          }
        
          .label-mobile {
            display: inline;
            font-size: 0.85rem;
            font-weight: 500;
          }
        
          .filter-buttons {
            flex-wrap: wrap;
            gap: 0.5rem;
          }
        
          .filter-btn {
            flex: 1 1 calc(50% - 0.5rem);
            padding: 0.6rem 0.8rem;
            text-align: center;
          }
        }

        
        /* Portfolio Grid */
        .portfolio-section {
            padding: 2rem 2rem 6rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .portfolio-item {
              background: var(--portfolio-card);
              box-shadow: var(--portfolio-shadow);
              border: 1px solid var(--border);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            opacity: 1;
            transform: scale(1);
        }
        
        .portfolio-item.hidden {
            display: none;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #f0f2f5 25%, transparent 25%), 
                        linear-gradient(-45deg, #f0f2f5 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #f0f2f5 75%), 
                        linear-gradient(-45deg, transparent 75%, #f0f2f5 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-media {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        
        .portfolio-image img,
        .portfolio-image video {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
        
        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.05);
        }
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--portfolio-overlay);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-actions {
            display: flex;
            gap: 1rem;
        }
        
        .portfolio-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
        }
        
        .portfolio-btn:hover {
            transform: scale(1.1);
            background: var(--primary);
            color: white;
        }
        
        .portfolio-content {
            padding: 1.5rem;
        }
        
        .portfolio-category {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            display: block;
            margin-top: 5%;
        }
        
        .portfolio-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--portfolio-text);
            margin-top: 5%;
        }
        
        .portfolio-description {
            color: var(--portfolio-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
            margin-top: 5%;
        }
        
        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        #modalTags {
          display: flex;
          flex-wrap: wrap;
          gap: 0.5rem;
        }
        
        .portfolio-tag {
          padding: 0.4rem 0.8rem;
          font-size: 0.8rem;
          border-radius: 999px;
          border: 1px solid var(--border);
          background: var(--portfolio-tag-bg);
          color: var(--portfolio-tag-text);
          backdrop-filter: blur(6px);
        }


        .contact-quote-section {
            margin-top: 50px;
            padding: 40px 20px;
            text-align: center;
        }
        
        .contact-quote-section .quote-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #6c63ff, #8b7cff);
            margin: 0 auto 20px;
            border-radius: 2px;
            opacity: 0.6;
        }
        
        .contact-quote-section .quote-text {
            font-size: 25px;
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        [data-theme="dark"] .modal-content {
          background: rgba(18,24,51,.95);
          box-shadow:
            0 30px 80px rgba(0,0,0,.7),
            inset 0 0 0 1px rgba(255,255,255,.04);
        }
        
        [data-theme="dark"] .modal-body {
          background: linear-gradient(
            to bottom,
            rgba(18,24,51,.95),
            rgba(11,16,32,.95)
          );
        }
        
        [data-theme="dark"] #modalCategory {
          color: var(--primary);
        }
        
        [data-theme="dark"] #modalDescription {
          color: var(--text-muted);
        }
        
        [data-theme="dark"] .portfolio-tag {
          background: rgba(124,140,255,.15);
          color: #dbeafe;
        }
        [data-theme="dark"] .portfolio-hero {
          background: linear-gradient(
            135deg,
            #1e3a8a,
            #0f172a
          );
        }



        
        /* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== MODAL CONTENT ===== */
.modal-content {
  background: rgba(255,255,255,.95);
  border-radius: 18px;
  width: 90%;
  max-width: 850px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.3);

  transform: scale(.92) translateY(20px);
  opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ===== CLOSE BUTTON ===== */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.55);
  color: #fff;
  z-index: 10;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .25s ease;
}

.modal-close:hover {
  background: var(--primary);
  transform: rotate(90deg) scale(1.1);
}

/* ===== MEDIA AREA ===== */
/* ===== MEDIA AREA ===== */
.modal-media {
  width: 100%;
  aspect-ratio: 16 / 30;
  background: #000;
  position: relative;
  overflow: hidden;

  /* kunci utama centering */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE / VIDEO */
.modal-media img,
.modal-media video {
  /* ❌ JANGAN DIPAKSA FULL */
  width: auto;
  height: auto;

  /* batas maksimal container */
  max-width: 100%;
  max-height: 100%;

  /* ini yang bikin zoom bener */
  object-fit: contain;

  transition: transform .25s ease;
  transform-origin: center center;
  will-change: transform;
}



/* subtle gradient overlay */
.modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.55)
  );
  pointer-events: none;
  z-index: 0;
}

/* ===== BODY ===== */
.modal-body {
  padding: 2.2rem;
  overflow-y: auto;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.92),
    rgba(245,245,245,.92)
  );
  backdrop-filter: blur(6px);
}

/* subtle divider */
.modal-body::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,.15),
    transparent
  );
  margin-bottom: 1.5rem;
}

/* ===== TEXT STYLING ===== */
#modalCategory {
  display: inline-block;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: black;
  margin-bottom: .4rem;
  margin-top: 1%;
}

#modalTitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .75rem;
  margin-top: 1%;
}

#modalDescription {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  margin-top: 1%;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }

  #modalTitle {
    font-size: 1.4rem;
  }
}

/* ===== ZOOM CONTROLS ===== */
.zoom-controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 100000;
}

.zoom-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.65);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  transition: all .2s ease;
}

.zoom-controls button:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.modal-cta {
  margin-top: auto;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,99,235,.4);
}

/* ===============================
   FULLSCREEN STATE
================================ */
.modal-media.fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
}

.modal-media.fullscreen img,
.modal-media.fullscreen video {
  max-width: 100vw;
  max-height: 100vh;
}

/* ===============================
   FULLSCREEN BUTTON ICON
================================ */
#fullScreenToggle i {
  font-size: 18px;
}


        
        /* Responsive */
        @media (max-width: 768px) {
            .portfolio-hero {
                padding: 7rem 1.5rem 3rem;
            }
            
            .portfolio-hero h1 {
                font-size: 2.2rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
            
            .portfolio-section {
                padding: 4rem 1.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
            
            .filter-buttons {
                gap: 0.5rem;
            }
            
            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
            
            .modal-content {
                width: 95%;
                margin: 1rem;
            }
            
            .modal-image {
                height: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .portfolio-hero {
                padding: 6rem 1rem 2rem;
            }
            
            .portfolio-hero h1 {
                font-size: 1.8rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-actions {
                gap: 0.5rem;
            }
            
            .portfolio-btn {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
        }




        
        
        /* Services Hero */
        .services-hero {
            padding: 8rem 2rem 4rem;
          background: var(--gradient);
          color: white;
          text-align: center;
          position: relative;
          overflow: hidden;
        }
        
        [data-theme="dark"] .services-hero {
          background: linear-gradient(
            135deg,
            #1e3a8a,
            #0f172a
          );
        }
        
        .services-hero::after {
          content: '';
          position: absolute;
          inset: 0;
          background: radial-gradient(
            circle at top,
            rgba(255,255,255,0.15),
            transparent 60%
          );
          pointer-events: none;
        }
        
        [data-theme="dark"] .services-hero::after {
          background: radial-gradient(
            circle at top,
            rgba(255,255,255,0.08),
            transparent 100%
          );
        }
        
        .services-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .services-hero h1 {
            font-size: 3rem;
          margin-bottom: 1rem;
          font-family: 'Manrope', sans-serif;
          letter-spacing: -0.02em;
        }
        
        .services-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Services Grid */
        .services-section {
          padding: 6rem 2rem;
          max-width: 1200px;
          margin: 0 auto;
          background: var(--bg-main);
          color: var(--text-main);
        }

        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
          margin-bottom: 1rem;
          background: var(--gradient);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            color: var(--text-muted);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            justify-items: center;
        }
        
        .service-card {
             background: var(--card-bg);
              padding: 2.5rem 2rem;
              border-radius: 16px;
              box-shadow: 0 10px 30px rgba(0,0,0,0.05);
              transition: transform .3s, box-shadow .3s;
              text-align: center;
              position: relative;
              overflow: hidden;
              backdrop-filter: blur(12px);
        }
        
        [data-theme="dark"] .service-card {
          border: 1px solid rgba(48, 17, 163, 0.5);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            transition: transform 0.3s;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
            color: var(--card-text);
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .service-card p {
            color: var(--card-muted);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .service-features {
            text-align: left;
            margin: 2rem 0;
        }
        
        .service-features li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            color: var(--card-muted);
        }
        
        .service-features i {
            color: var(--primary);
            margin-right: 0.8rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin: 1.5rem 0;
        }
        
        .service-price span {
            font-size: 1rem;
            color: var(--card-muted);
            font-weight: normal;
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                justify-items: center;
            }
        
            .service-card {
                max-width: 420px;
                width: 100%;
            }
        }

        
        /* Pricing Section */
        .pricing-section {
            padding: 6rem 2rem;
            background: #f8f9fa;
        }
        
        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .pricing-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-5px);
        }
        
        .pricing-header {
            margin-bottom: 2rem;
        }
        
        .pricing-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .pricing-period {
            color: #666;
            font-size: 1rem;
        }
        
        .pricing-features {
            text-align: left;
            margin: 2rem 0;
        }
        
        .pricing-features li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            color: #555;
        }
        
        .pricing-features i {
            color: var(--primary);
            margin-right: 0.8rem;
            flex-shrink: 0;
        }
        
        /* Process Section */
        .process-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .process-step h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
            color: var(--dark);
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .process-step p {
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            background: var(--gradient);
            color: white;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .cta-content p {
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button-white {
            background: white;
            color: var(--primary);
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .cta-button-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }
        
        .cta-button-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        



        /* Contact Hero */
        .contact-hero {
            padding: 8rem 2rem 4rem;
            background: var(--gradient);
            color: white;
            text-align: center;
        }
        
        [data-theme="dark"] .contact-hero {
          background: linear-gradient(
            135deg,
            #1e3a8a,
            #0f172a
          );
        }
        
        .contact-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-card {
          background: var(--surface);
          color: var(--text);
          box-shadow: var(--portfolio-shadow);
          padding: 2rem;
          border-radius: 15px;
          transition: transform .3s, background .3s;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }
        
        .contact-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .contact-card p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }
        
        .social-contact {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-contact a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
             background: var(--primary-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-contact a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Contact Form */
        .contact-form-container {
            background: var(--surface);
          color: var(--text);
          box-shadow: var(--portfolio-shadow);
            padding: 3rem;
            border-radius: 15px;
        }
        
        .contact-form-container h2 {
            margin-bottom: 2rem;
            font-size: 1.8rem;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text);
        }
        
        .form-control {
            width: 100%;
            padding: 1rem;
            background: transparent;
          color: var(--text);
          border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: transparent;
        }
        
        .form-control::placeholder {
          color: var(--text-muted);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
        }
        
        /* Map Section */
        .map-section {
            padding: 0 2rem 6rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .map-container {
            background: var(--surface);
          color: var(--text);
          box-shadow: var(--portfolio-shadow);
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--border) 25%, transparent 25%),
                        linear-gradient(-45deg, var(--border) 25%, transparent 25%),
                        linear-gradient(45deg, transparent 75%, var(--border) 75%),
                        linear-gradient(-45deg, transparent 75%, var(--border) 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--text-muted);
        }
        
        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 6rem 2rem;
            background: var(--bg);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Manrope', sans-serif;
            letter-spacing: -0.02em;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            color: var(--text-muted);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--surface);
              color: var(--text);
              box-shadow: var(--portfolio-shadow);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: var(--primary-soft);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-muted);
        }
        
        .faq-answer.active {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }
        
        .faq-toggle {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }



        /* Footer */
        footer {
            padding: 4rem 2rem 2rem;
          background: var(--surface);
          color: var(--text);
          border-top: 1px solid var(--border);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column p {
          color: var(--text-muted);
          line-height: 1.7;
          font-size: 0.95rem;
        }

        .footer-column h3 {
            margin-bottom: 1.5rem;
          font-size: 1.15rem;
          font-family: 'Manrope', sans-serif;
          letter-spacing: -0.02em;
          color: var(--text);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
          color: var(--text-muted);
          text-decoration: none;
          transition: color .3s ease;
        }
        
        .footer-links a:hover {
          color: var(--primary);
        }

        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            width: 40px;
          height: 40px;
          border-radius: 50%;
          background: rgba(0,0,0,0.05);
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--text);
          transition: all .3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
          color: white;
          transform: translateY(-3px);
        }
        
        .copyright {
          text-align: center;
          padding-top: 2rem;
          margin-top: 3rem;
          border-top: 1px solid var(--border);
          color: var(--text-muted);
          font-size: 0.85rem;
        }
        
        .copyright a {
          color: inherit;
          text-decoration: none;
        }
        
        [data-theme="dark"] footer {
          background: #0b1020;
        }
        
        [data-theme="dark"] .social-links a {
          background: rgba(255,255,255,0.08);
        }
        
        [data-theme="dark"] .social-links a:hover {
          background: var(--primary);
        }
        
        @media (max-width: 1024px) {
          .contact-hero {
            padding: 6rem 1.5rem 3rem;
          }
        
          .contact-hero h1 {
            font-size: 2.4rem;
          }
        
          .contact-hero p {
            font-size: 1.05rem;
          }
        }
        
        @media (max-width: 600px) {
          .contact-hero h1 {
            font-size: 2rem;
          }
        
          .contact-hero p {
            font-size: 1rem;
          }
        }
        
        @media (max-width: 1024px) {
          .contact-container {
            grid-template-columns: 1fr;
            gap: 3rem;
          }
        
          .contact-info {
            flex-direction: row;
            gap: 1.5rem;
          }
        
          .contact-card {
            flex: 1;
          }
        }
        
        @media (max-width: 768px) {
          .contact-info {
            flex-direction: column;
          }
        }

        @media (max-width: 768px) {
          .contact-form-container {
            padding: 2rem;
          }
        
          .contact-form-container h2 {
            font-size: 1.6rem;
            color: var(--gradient);
          }
        
          .form-control {
            padding: 0.9rem;
            font-size: 0.95rem;
          }
        
          textarea.form-control {
            min-height: 130px;
          }
        }
        
        @media (max-width: 480px) {
          .contact-form-container {
            padding: 1.5rem;
          }
        }

        @media (max-width: 768px) {
          .faq-section {
            padding: 4rem 1.5rem;
          }
        
          .section-title h2 {
            font-size: 2rem;
          }
        
          .faq-question {
            padding: 1.2rem;
            font-size: 0.95rem;
          }
        
          .faq-answer p {
            font-size: 0.95rem;
          }
        }

        .contact-card,
        .contact-form-container,
        .faq-item {
          will-change: transform;
        }
        
        @media (hover: none) {
          .contact-card:hover,
          .submit-btn:hover {
            transform: none;
            box-shadow: inherit;
          }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .nav-links   {
                display: none;
            }
            .cta-button {
                width: 100%;
                align-items: center;
                text-align: center;
            }
            
            .cta-button a {
                width: 100%;
                align-items: center;
                text-align: center;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.8rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 5rem 1.5rem 2rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-button {
                width: 100%;
                max-width: 250px;
            }
            
            .features, .testimonials, .cta-section {
                padding: 4rem 1.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
        }
        
        @media (max-width: 480px) {
            header {
                padding: 1rem 1.5rem;
            }
            
            .header-scrolled {
                padding: 0.7rem 1.5rem;
            }
            
            .hero {
                padding: 4rem 1rem 2rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
                font-family: 'Manrope', sans-serif;
                letter-spacing: -0.02em;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .features, .testimonials, .cta-section {
                padding: 3rem 1rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
        }