
    /* ----- GLOBAL RESET & VARIABLES (Aligned Design System) ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      background: #ffffff;
    }
    
    :root {
      --primary: #f97316;
      --primary-dark: #ea580c;
      --primary-light: #ffedd5;
      --dark: #0f172a;
      --gray: #64748b;
      --light-bg: #f8fafc;
    }
    
    .text-primary-custom {
      color: var(--primary) !important;
    }
    
    .bg-gradient-orange {
      background: linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
    }
    
    .btn-orange {
      background: var(--primary);
      border: none;
      color: white;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
    }
    
    .btn-orange:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
      color: white;
    }
    
    .btn-outline-orange {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    
    .btn-outline-orange:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }
    
    .badge-orange {
      background: var(--primary-light);
      color: var(--primary-dark);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      letter-spacing: 0.3px;
    }
    
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      padding: 1rem 0;
    }
    
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      padding: 0.7rem 0;
    }
    
    .nav-link-custom {
      font-weight: 500;
      color: var(--dark);
      transition: 0.2s;
    }
    
    .nav-link-custom:hover, .nav-link-custom.active {
      color: var(--primary);
    }
    
    .hero-title {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    
    .section-padding {
      padding: 80px 0;
    }
    
    /* ----- SLIDER MODERN (Glassmorphism + Animation) ----- */
    #planSlider {
      position: relative;
      padding: 10px 5px 30px 5px;
    }
    
    .carousel-inner {
      border-radius: 32px;
      overflow: hidden;
    }
    
    .plan-slider-card {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 32px;
      padding: 2rem 1.8rem;
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid rgba(249, 115, 22, 0.15);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(249,115,22,0.05);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .plan-slider-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      transition: left 0.6s ease;
    }
    
    .plan-slider-card:hover::before {
      left: 100%;
    }
    
    .plan-slider-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 30px 45px -12px rgba(249, 115, 22, 0.25);
      border-color: rgba(249, 115, 22, 0.4);
    }
    
    .plan-slider-card.featured-slide {
      background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
      border-top: 4px solid var(--primary);
      position: relative;
      box-shadow: 0 25px 40px -12px rgba(249,115,22,0.2);
    }
    
    .plan-slider-card.featured-slide::after {
      content: '⭐ MOST POPULAR';
      position: absolute;
      top: 16px;
      right: -28px;
      background: linear-gradient(95deg, #f97316, #ea580c);
      color: white;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 6px 35px;
      transform: rotate(45deg);
      letter-spacing: 1px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      z-index: 10;
    }
    
    .slider-price {
      font-size: 2.7rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }
    
    .plan-feature-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
    
    .plan-feature-list li {
      padding: 10px 0;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid #f1f5f9;
      font-weight: 500;
    }
    
    .plan-feature-list i {
      color: var(--primary);
      font-size: 1.1rem;
      background: var(--primary-light);
      border-radius: 50%;
      padding: 3px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
      width: 46px;
      height: 46px;
      background: white;
      border-radius: 60px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      border: 1px solid rgba(249,115,22,0.2);
    }
    
    .carousel-control-prev { left: -20px; }
    .carousel-control-next { right: -20px; }
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: var(--primary);
      border-color: var(--primary);
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(48%) sepia(95%) saturate(600%) hue-rotate(350deg);
    }
    
    .carousel-indicators {
      bottom: -45px;
      gap: 8px;
    }
    
    .carousel-indicators button {
      width: 10px;
      height: 10px;
      border-radius: 20px;
      background-color: #cbd5e1;
      transition: all 0.3s ease;
    }
    
    .carousel-indicators button.active {
      background-color: var(--primary);
      width: 28px;
    }
    
    /* ----- PACKAGE CARDS (Unified design) ----- */
    .package-card {
      transition: all 0.35s ease;
      border-radius: 28px;
      position: relative;
    }
    
    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12) !important;
    }
    
    .featured-package {
      border-top: 4px solid var(--primary);
      position: relative;
    }
    
    .glass-card {
      background: white;
      border-radius: 28px;
      transition: all 0.3s;
      border: 1px solid rgba(249,115,22,0.1);
    }
    
    .glass-card:hover {
      transform: translateY(-5px);
      border-color: rgba(249,115,22,0.3);
      box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    }
    
    .why-icon-box {
      background: var(--primary-light);
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 24px;
      margin-bottom: 12px;
    }
    
    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      transition: 0.2s;
      display: inline-block;
    }
    
    .contact-icon {
      background: var(--primary-light);
      width: 48px;
      height: 48px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .social-icon-circle {
      display: inline-flex;
      width: 36px;
      height: 36px;
      background: #f1f5f9;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      color: var(--dark);
      transition: 0.2s;
      text-decoration: none;
    }
    
    .social-icon-circle:hover {
      background: var(--primary);
      color: white;
    }
    
    .form-control-custom, .form-control {
      border-radius: 60px !important;
      padding: 12px 20px;
      border: 1px solid #e2e8f0;
    }
    
    textarea.form-control {
      border-radius: 24px !important;
    }
    
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: all 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
    
    .comparison-table th, .comparison-table td {
      padding: 14px 12px;
      vertical-align: middle;
    }
    
    .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.6);
      transform: scale(0);
      animation: rippleAnim 0.6s linear;
      pointer-events: none;
    }
    
    @keyframes rippleAnim {
      to { transform: scale(6); opacity: 0; }
    }
    
    footer {
      background: #f8fafc;
      border-top: 1px solid #eef2ff;
    }
    
    .contact-info-wrapper {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-info-card {
      background: white;
      padding: 1.5rem;
      border-radius: 28px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    }
    
    /* ----- PORTFOLIO MODERN (Aligned with full design) ----- */
    .portfolio-wrapper {
      max-width: 1440px;
      margin: 0 auto;
      padding: 2rem 2rem 4rem 2rem;
      position: relative;
    }
    
    .portfolio-header {
      text-align: center;
      margin-bottom: 3.5rem;
      padding: 1rem 0 0.5rem;
    }
    
    .portfolio-header .badge {
      display: inline-block;
      background: rgba(0, 110, 230, 0.08);
      backdrop-filter: blur(2px);
      padding: 0.35rem 1rem;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #0066cc;
      margin-bottom: 1rem;
      border: 0.5px solid rgba(0,110,230,0.2);
    }
    
    .portfolio-header h1 {
      font-size: 3.2rem;
      font-weight: 700;
      background: linear-gradient(135deg, #1A2C3E 0%, #2C5368 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }
    
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    
    .portfolio-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 2rem;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0,0,0,0.02);
      transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
      cursor: pointer;
      border: 1px solid rgba(226, 232, 240, 0.7);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    
    .portfolio-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 45px -15px rgba(0, 32, 64, 0.2);
      border-color: rgba(0, 110, 230, 0.3);
      background: #ffffff;
    }
    
    .card-image {
      width: 100%;
      height: 220px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: transform 0.5s ease;
    }
    
    .portfolio-card:hover .card-image {
      transform: scale(1.02);
    }
    
    .card-content {
      padding: 1.5rem 1.5rem 1.8rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    
    .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #0f2b3b;
      transition: color 0.2s;
    }
    
    .portfolio-card:hover .card-title {
      color: #0066cc;
    }
    
    .card-description {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #4a5568;
      margin-bottom: 1.25rem;
      flex: 1;
    }
    
    .card-link-hint {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #0066cc;
      background: rgba(0,110,230,0.05);
      padding: 0.4rem 0.9rem;
      border-radius: 40px;
      width: fit-content;
      transition: all 0.2s;
    }
    
    .portfolio-card:hover .card-link-hint {
      background: rgba(0,110,230,0.12);
      gap: 8px;
    }
    
    .card-category {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      color: #5f7f9e;
      margin-bottom: 0.65rem;
      display: inline-block;
      background: #eef2f8;
      padding: 0.2rem 0.7rem;
      border-radius: 20px;
      width: fit-content;
    }
    
    @media (max-width: 768px) {
      .carousel-control-prev, .carousel-control-next { display: none; }
      .plan-slider-card { padding: 1.5rem; }
      .slider-price { font-size: 2rem; }
      .hero-title { font-size: 2.2rem; }
      .section-padding { padding: 50px 0; }
      .portfolio-wrapper { padding: 1.2rem; }
      .portfolio-header h1 { font-size: 2.2rem; }
      .portfolio-grid { gap: 1.25rem; }
    }
    
    .footer-link {
      color: #aaa;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    .footer-link:hover { color: var(--primary); text-decoration: underline; }
  