 :root {
     --primary: #ff6b35;
     --primary-dark: #e55a2b;
     --secondary: #fbbf24;
     --accent: #00d9ff;
     --bg-black: #000000;
     --bg-dark: #0a0a0a;
     --bg-darker: #050505;
     --surface: #1a1a1a;
     --surface-light: #252525;
     --border: #2a2a2a;
     --border-light: #3a3a3a;
     --text: #ffffff;
     --text-muted: #a0a0a0;
     --text-dim: #707070;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', sans-serif;
     background-color: var(--bg-black);
     color: var(--text);
     overflow-x: hidden;
 }

 /* Scrollbar */
 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background: var(--bg-dark);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--primary);
     border-radius: 5px;
 }

 /* Navbar */
 .navbar-custom {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
     transition: all 0.3s ease;
     padding-top: 20px;
     padding-bottom: 20px;
 }

 .navbar-custom.scrolled {
     box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
     border-bottom-color: var(--primary);
 }

 .navbar-brand-custom {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 800;
     font-size: 1.5rem;
     color: var(--text);
     text-decoration: none;
 }

 .logo-box {
     width: 200px;
     height: 70px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 900;
     font-size: 1.3rem;
 }

 .logo-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }


 .nav-link-custom {
     color: black;
     font-weight: 500;
     padding: 0.5rem 1rem !important;
     transition: all 0.3s ease;
     position: relative;
     color: black;
 }

 .nav-link-custom::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 2px;
     background: var(--primary);
     transition: width 0.3s ease;
 }

 .nav-link-custom:hover {
     color: var(--primary) !important;
 }

 .nav-link-custom:hover::after {
     width: 80%;
 }

 .btn-gradient {
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     color: white;
     border: none;
     padding: 0.75rem 1.8rem;
     border-radius: 12px;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
 }

 .btn-gradient:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
     color: white;
 }

 /* Hero Section */
 .hero-section {
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
         radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
         var(--bg-black);
     margin-top: 70px;
 }

 .hero-grid {
     position: absolute;
     inset: 0;
     background-image:
         linear-gradient(var(--border) 1px, transparent 1px),
         linear-gradient(90deg, var(--border) 1px, transparent 1px);
     background-size: 50px 50px;
     opacity: 0.1;
     animation: gridMove 20s linear infinite;
 }

 @keyframes gridMove {
     0% {
         transform: translate(0, 0);
     }

     100% {
         transform: translate(50px, 50px);
     }
 }

 .hero-glow {
     position: absolute;
     border-radius: 50%;
     filter: blur(120px);
     opacity: 0.3;
     animation: pulse 4s ease-in-out infinite;
 }

 .hero-glow-1 {
     width: 600px;
     height: 600px;
     background: var(--primary);
     top: -200px;
     left: -200px;
 }

 .hero-glow-2 {
     width: 700px;
     height: 700px;
     background: #dc2626;
     bottom: -250px;
     right: -250px;
     animation-delay: 2s;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 0.2;
         transform: scale(1);
     }

     50% {
         opacity: 0.4;
         transform: scale(1.1);
     }
 }

 .badge-hero {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: rgba(255, 107, 53, 0.1);
     border: 1px solid rgba(255, 107, 53, 0.3);
     color: var(--primary);
     padding: 10px 20px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     margin-bottom: 2rem;
     backdrop-filter: blur(10px);
 }

 .hero-title {
     font-size: clamp(2.5rem, 7vw, 6rem);
     font-weight: 900;
     line-height: 1.1;
     margin-bottom: 2rem;
     text-shadow: 0 0 80px rgba(255, 107, 53, 0.3);
 }

 .gradient-text {
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: gradientShift 3s ease infinite;
     background-size: 200% 200%;
 }

 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 .hero-subtitle {
     font-size: 1.3rem;
     color: var(--text-muted);
     margin-bottom: 3rem;
     max-width: 700px;
     line-height: 1.6;
 }

 .btn-outline-custom {
     border: 2px solid var(--border-light);
     color: var(--text);
     padding: 0.75rem 1.8rem;
     border-radius: 12px;
     font-weight: 600;
     background: transparent;
     transition: all 0.3s ease;
 }

 .btn-outline-custom:hover {
     background: var(--surface);
     border-color: var(--primary);
     color: var(--text);
     transform: translateY(-3px);
 }

 .stats-grid {
     margin-top: 5rem;
     padding: 3rem;
     background: rgba(26, 26, 26, 0.5);
     border: 1px solid var(--border);
     border-radius: 24px;
     backdrop-filter: blur(20px);
 }

 .stat-item {
     text-align: center;
 }

 .stat-value {
     font-size: 3.5rem;
     font-weight: 900;
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     line-height: 1;
     margin-bottom: 0.5rem;
 }

 .stat-label {
     color: var(--text-muted);
     font-size: 1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Feature Cards */
 .feature-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 2.5rem;
     height: 100%;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
 }

 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
     transform: translateX(-100%);
     transition: transform 0.5s ease;
 }

 .feature-card:hover::before {
     transform: translateX(0);
 }

 .feature-card:hover {
     transform: translateY(-15px);
     border-color: var(--primary);
     box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
     background: var(--surface-light);
 }

 .feature-card>*:last-child {
     margin-top: auto;
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2.2rem;
     margin-bottom: 2rem;
     box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
     transition: all 0.3s ease;
 }

 .feature-card:hover .feature-icon {
     transform: scale(1.15) rotate(-5deg);
     box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
 }

 .feature-title {
     font-size: 1.6rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--text);
 }

 .feature-text {
     color: var(--text-muted);
     line-height: 1.7;
 }

 /* Section Styling */
 .section-dark {
     background: var(--bg-dark);
     position: relative;
 }

 .section-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: rgba(255, 107, 53, 0.1);
     border: 1px solid rgba(255, 107, 53, 0.2);
     color: var(--primary);
     padding: 10px 20px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
 }

 .section-title {
     font-size: clamp(2.5rem, 5vw, 4rem);
     font-weight: 900;
     margin-bottom: 1.5rem;
     line-height: 1.2;
 }

 .section-subtitle {
     font-size: 1.3rem;
     color: var(--text-muted);
     margin-bottom: 4rem;
     max-width: 700px;
 }

 /* Course Cards */
 .course-card {
     background: var(--surface);
     border: 2px solid var(--border);
     border-radius: 28px;
     padding: 3rem;
     height: 100%;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
 }

 .course-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
     pointer-events: none;
 }

 .course-card:hover::after {
     opacity: 1;
 }

 .course-card:hover {
     transform: translateY(-15px);
     border-color: var(--primary);
     box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
 }

 .course-card.featured {
     border-color: var(--primary);
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, var(--surface) 100%);
     box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
 }

 .course-card .feature-list {
     flex-grow: 1;
 }

 .course-card .btn {
     margin-top: auto;
     pointer-events: auto;
 }

 .featured-badge {
     position: absolute;
     top: -15px;
     left: 50%;
     transform: translateX(-50%);
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     color: white;
     padding: 8px 24px;
     border-radius: 50px;
     font-weight: 800;
     font-size: 0.75rem;
     letter-spacing: 2px;
     box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
 }

 .course-icon-wrapper {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 2rem;
     position: relative;
     z-index: 1;
 }

 .course-icon {
     width: 90px;
     height: 90px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2.5rem;
     box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
     transition: transform 0.3s ease;
 }

 .course-card:hover .course-icon {
     transform: scale(1.1) rotate(-5deg);
 }

 .course-badge {
     background: rgba(255, 107, 53, 0.15);
     border: 1px solid rgba(255, 107, 53, 0.3);
     color: var(--primary);
     padding: 8px 18px;
     border-radius: 50px;
     font-weight: 700;
     font-size: 0.85rem;
 }

 .feature-list {
     list-style: none;
     padding: 0;
     margin: 2rem 0;
     position: relative;
     z-index: 1;
 }

 .feature-list li {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
     color: var(--text-muted);
     font-size: 0.95rem;
 }

 .feature-check {
     width: 28px;
     height: 28px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 0.75rem;
     flex-shrink: 0;
     box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
 }

 /* Pricing Cards */
 .pricing-card {
     background: var(--surface);
     border: 2px solid var(--border);
     border-radius: 28px;
     padding: 3rem;
     height: 100%;
     transition: all 0.4s ease;
     position: relative;
     display: flex;
     flex-direction: column;
 }

 .pricing-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
 }

 .pricing-card.featured {
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     color: white;
     border: none;
     transform: scale(1.05);
     box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
 }

 .pricing-card.featured:hover {
     transform: translateY(-15px) scale(1.05);
     box-shadow: 0 35px 70px rgba(255, 107, 53, 0.5);
 }

 .pricing-card.featured .feature-list li {
     color: rgba(255, 255, 255, 0.9);
 }

 .pricing-card.featured .feature-check {
     background: white;
     color: var(--primary);
 }

 .pricing-card .feature-list {
     flex-grow: 1;
     margin-bottom: 2rem;
 }

 .pricing-card .btn {
     margin-top: auto;
 }

 .price {
     font-size: 4rem;
     font-weight: 900;
     line-height: 1;
     margin-bottom: 0.5rem;
 }

 .price-period {
     color: var(--text-muted);
     font-size: 1.1rem;
 }

 .pricing-card.featured .price-period {
     color: rgba(255, 255, 255, 0.8);
 }

 /* Testimonials */
 .testimonial-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 2.5rem;
     height: 100%;
     transition: all 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary);
     box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
 }

 .stars {
     color: var(--primary);
     margin-bottom: 1.5rem;
     font-size: 1.2rem;
 }

 .testimonial-text {
     font-style: italic;
     color: var(--text-muted);
     margin-bottom: 2rem;
     line-height: 1.7;
     font-size: 1.05rem;
 }

 .author-avatar {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 800;
     font-size: 1.5rem;
     box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
 }

 /* CTA Section */
 .cta-section {
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     padding: 120px 0;
     position: relative;
     overflow: hidden;
 }

 .cta-pattern {
     position: absolute;
     inset: 0;
     background-image: repeating-linear-gradient(45deg,
             transparent,
             transparent 35px,
             rgba(255, 255, 255, 0.05) 35px,
             rgba(255, 255, 255, 0.05) 70px);
 }

 .cta-glow {
     position: absolute;
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     animation: ctaPulse 3s ease-in-out infinite;
 }

 @keyframes ctaPulse {

     0%,
     100% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 0.5;
     }

     50% {
         transform: translate(-50%, -50%) scale(1.2);
         opacity: 0.8;
     }
 }

 .btn-white {
     background: white;
     color: var(--primary);
     padding: 1.2rem 2.5rem;
     border-radius: 14px;
     font-weight: 700;
     font-size: 1.1rem;
     border: none;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .btn-white:hover {
     background: #f8f8f8;
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
     color: var(--primary);
 }

 .btn-outline-white {
     background: transparent;
     color: white;
     border: 2px solid white;
     padding: 1.2rem 2.5rem;
     border-radius: 14px;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s ease;
 }

 .btn-outline-white:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-5px);
     color: white;
 }

 /* Footer */
 .footer {
     background: var(--bg-darker);
     border-top: 1px solid var(--border);
     padding: 5rem 0 2rem;
 }

 .footer-title {
     font-weight: 700;
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     color: var(--text);
 }

 .footer-link {
     color: var(--text-muted);
     text-decoration: none;
     display: block;
     margin-bottom: 0.8rem;
     transition: all 0.3s ease;
     font-size: 0.95rem;
 }

 .footer-link:hover {
     color: var(--primary);
     padding-left: 5px;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 1.5rem;
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .animate-fade-in {
     animation: fadeInUp 0.8s ease-out;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.8rem;
     }

     .stat-value {
         font-size: 2.5rem;
     }

     .section-title {
         font-size: 2.2rem;
     }

     .course-card.featured,
     .pricing-card.featured {
         transform: none;
     }

     .stats-grid {
         padding: 2rem;
     }
 }

 /* Loading Animation */
 .loading-screen {
     position: fixed;
     inset: 0;
     background: var(--bg-black);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     transition: opacity 0.5s ease;
 }

 .loading-screen.hidden {
     opacity: 0;
     pointer-events: none;
 }

 .loader {
     width: 60px;
     height: 60px;
     border: 4px solid var(--border);
     border-top-color: var(--primary);
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 /* Override Bootstrap text-muted for dark theme */
 .text-muted {
     color: var(--text-muted) !important;
 }

 small.text-muted {
     color: var(--text-muted) !important;
 }

 p.text-muted {
     color: var(--text-muted) !important;
 }

 .form-check-label {
     color: var(--text-muted) !important;
 }

 .testimonial-card .text-muted {
     color: var(--text-dim) !important;
 }

 .footer .text-muted {
     color: var(--text-muted) !important;
 }

 .performance-item p {
     color: var(--text-muted) !important;
 }

 .contact-feature-item p {
     color: var(--text-muted) !important;
 }

 .form-success p {
     color: var(--text-muted) !important;
 }

 /* Override Bootstrap text-muted for dark theme */
 .text-muted {
     color: var(--text-muted) !important;
 }

 small.text-muted {
     color: var(--text-muted) !important;
 }

 p.text-muted {
     color: var(--text-muted) !important;
 }

 .form-check-label {
     color: var(--text-muted) !important;
 }

 .testimonial-card .text-muted {
     color: var(--text-dim) !important;
 }

 .footer .text-muted {
     color: var(--text-muted) !important;
 }

 .performance-item p {
     color: var(--text-muted) !important;
 }

 .contact-feature-item p {
     color: var(--text-muted) !important;
 }

 .form-success p {
     color: var(--text-muted) !important;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* Graph Card */
 .graph-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 2.5rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
 }

 .performance-stats {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .performance-item {
     display: flex;
     align-items: flex-start;
     gap: 1.5rem;
     padding: 2rem;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 20px;
     transition: all 0.3s ease;
 }

 .performance-item:hover {
     border-color: var(--primary);
     transform: translateX(10px);
     box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
 }

 .performance-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.8rem;
     flex-shrink: 0;
     box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
 }

 .performance-item h4 {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text);
 }

 /* Team Carousel */
 .team-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 28px;
     padding: 3rem;
     transition: all 0.3s ease;
 }

 .team-image-wrapper {
     position: relative;
     display: inline-block;
 }

 .team-image {
     width: 200px;
     height: 200px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 6rem;
     box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
     margin: 0 auto;
 }

 .team-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .team-badge {
     position: absolute;
     bottom: 10px;
     right: 10px;
     background: var(--primary);
     color: white;
     padding: 8px 16px;
     border-radius: 50px;
     font-weight: 700;
     font-size: 0.75rem;
     box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
 }

 .team-stats {
     display: flex;
     gap: 2rem;
     margin-top: 2rem;
 }

 .team-stat-item {
     text-align: center;
 }

 .team-stat-value {
     font-size: 2rem;
     font-weight: 800;
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .team-stat-label {
     font-size: 0.8rem;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 60px;
     height: 60px;
     background: var(--primary);
     border-radius: 50%;
     opacity: 1;
     top: 50%;
     transform: translateY(-50%);
 }

 .carousel-control-prev {
     left: -80px;
 }

 .carousel-control-next {
     right: -80px;
 }

 .carousel-control-prev:hover,
 .carousel-control-next:hover {
     background: var(--primary-dark);
 }

 .carousel-indicators {
     margin-bottom: -3rem;
 }

 .carousel-indicators button {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: var(--border);
 }

 .carousel-indicators button.active {
     background: var(--primary);
 }

 /* Contact Form */
 .contact-form-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 28px;
     padding: 3rem;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
     position: relative;
     overflow: hidden;
 }

 .contact-form-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
 }

 .form-label {
     color: var(--text);
     font-weight: 600;
     margin-bottom: 0.5rem;
 }

 .form-control-custom,
 .form-select {
     background: var(--bg-dark);
     border: 1px solid var(--border);
     color: var(--text);
     padding: 0.875rem 1.25rem;
     border-radius: 12px;
     transition: all 0.3s ease;
 }

 .form-control-custom:focus,
 .form-select:focus {
     background: var(--surface-light);
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
     color: var(--text);
 }

 .form-control-custom::placeholder {
     color: var(--text-dim);
 }

 .form-check-input {
     background-color: var(--bg-dark);
     border-color: var(--border);
     width: 1.2rem;
     height: 1.2rem;
 }

 .form-check-input:checked {
     background-color: var(--primary);
     border-color: var(--primary);
 }

 .form-check-input:focus {
     box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
 }

 .contact-features {
     display: flex;
     flex-direction: column;
     gap: 2rem;
     margin-top: 3rem;
 }

 .contact-feature-item {
     display: flex;
     align-items: flex-start;
     gap: 1.5rem;
 }

 .contact-feature-icon {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     flex-shrink: 0;
     box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
 }

 .contact-feature-item h5 {
     font-weight: 700;
     color: var(--text);
 }

 .form-success {
     text-align: center;
     padding: 3rem 2rem;
 }

 .success-icon {
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 2rem;
     animation: successPop 0.5s ease-out;
 }

 .success-icon i {
     font-size: 3rem;
     color: white;
 }

 @keyframes successPop {
     0% {
         transform: scale(0);
         opacity: 0;
     }

     50% {
         transform: scale(1.2);
     }

     100% {
         transform: scale(1);
         opacity: 1;
     }
 }

 .form-success h4 {
     font-size: 2rem;
     font-weight: 800;
     color: var(--text);
 }