
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Animated Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 155px;
            z-index: 99;
            border-bottom: 1px solid rgba(255, 107, 53, 0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: logoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.2); }
        }

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

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            color: #ff6b35;
            transform: translateY(-2px);
        }

        .header-cta {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .header-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        /* Dynamic Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #ff6b35, #f7931e, #27ae60, #3498db);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            opacity: 0.9;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .particle:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 15px; height: 15px; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { width: 25px; height: 25px; left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { width: 18px; height: 18px; left: 40%; animation-delay: 3s; }
        .particle:nth-child(5) { width: 22px; height: 22px; left: 50%; animation-delay: 4s; }
        .particle:nth-child(6) { width: 16px; height: 16px; left: 60%; animation-delay: 5s; }
        .particle:nth-child(7) { width: 24px; height: 24px; left: 70%; animation-delay: 1.5s; }
        .particle:nth-child(8) { width: 19px; height: 19px; left: 80%; animation-delay: 2.5s; }
        .particle:nth-child(9) { width: 21px; height: 21px; left: 90%; animation-delay: 3.5s; }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            animation: heroSlideUp 1s ease-out;
        }

        @keyframes heroSlideUp {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            animation: textGlow 2s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            0% { text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
            100% { text-shadow: 0 4px 30px rgba(255,255,255,0.3); }
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInDelay 1s ease-out 0.5s both;
        }

        @keyframes fadeInDelay {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 0.95; transform: translateY(0); }
        }

        .hero-benefits {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 50px 0 30px 0;
            animation: fadeInDelay 1s ease-out 1s both;
            flex-wrap: wrap;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            min-width: 280px;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .benefit-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .benefit-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .benefit-text strong {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
        }

        .benefit-text span {
            font-size: 0.95rem;
            opacity: 0.9;
            color: white;
        }

        .hero-urgency {
            margin: 30px 0 40px 0;
            animation: fadeInDelay 1s ease-out 1.2s both;
        }

        .urgency-text {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            padding: 20px 30px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: pulse 2s ease-in-out infinite;
        }

        .urgency-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 800;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 8px;
        }

        .urgency-offer {
            font-size: 1.3rem;
            font-weight: 700;
            display: block;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInDelay 1s ease-out 1.5s both;
        }

        .btn-primary {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .btn-secondary {
            background: white;
            color: #ff6b35;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        /* Interactive Service Calculator */
        .calculator {
            background: white;
            padding: 80px 0;
            position: relative;
        }

        .calculator-container {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(39, 174, 96, 0.05));
            border-radius: 32px;
            padding: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 107, 53, 0.1);
            position: relative;
            overflow: hidden;
        }

        .calculator-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #ff6b35, #27ae60);
        }

        .calculator-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 900;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .calculator-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #718096;
            margin-bottom: 50px;
        }

        .calculator-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

        .form-group select,
        .form-group input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: white;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            cursor: pointer;
        }

        .form-group select:focus,
        .form-group input:focus,
        .form-group select:active,
        .form-group input:active {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
            transform: translateY(-2px);
        }

        .form-group select {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 20px;
            padding-right: 50px;
        }

        .price-display {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            margin-top: 40px;
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
            transform: scale(0.95);
            transition: all 0.3s ease;
        }

        .price-display.active {
            transform: scale(1);
        }

        .price-amount {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 12px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .price-label {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .price-cta {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .price-cta:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Interactive Timeline */
        .process {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: #2d3748;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-item:hover {
            transform: scale(1.02);
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            margin: 0 40px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(39, 174, 96, 0.1));
            transition: width 0.3s ease;
        }

        .timeline-item:hover .timeline-content::before {
            width: 100%;
        }

        .timeline-content:hover {
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
            border-color: #ff6b35;
        }

        .timeline-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-number {
            transform: scale(1.1) rotate(360deg);
        }

        .timeline-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2d3748;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .timeline-description {
            color: #718096;
            font-size: 1.1rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .timeline-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 20px;
        }

        .timeline-item.active .timeline-details {
            max-height: 200px;
        }

        .timeline-details ul {
            list-style: none;
            padding-left: 0;
        }

        .timeline-details li {
            padding: 8px 0;
            color: #4a5568;
            position: relative;
            padding-left: 25px;
        }

        .timeline-details li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        /* Animated Service Cards */
        .services {
            padding: 120px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid #e2e8f0;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #ff6b35, #27ae60);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .service-card:hover {
            transform: translateY(-15px) rotateY(5deg);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
            border-color: #ff6b35;
        }

        .service-card-inner {
            padding: 50px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-card-inner {
            transform: translateZ(20px);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 24px;
            display: block;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .service-card h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #2d3748;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover h3 {
            color: #ff6b35;
        }

        .service-description {
            color: #718096;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 12px 0;
            color: #4a5568;
            font-weight: 500;
            position: relative;
            padding-left: 30px;
            border-bottom: 1px solid #f7fafc;
            transition: all 0.3s ease;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #27ae60;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-features li::before {
            transform: translateY(-50%) scale(1.2);
        }

        .service-cta {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            width: 100%;
        }

        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }

        /* Testimonials with Animation */
        .testimonials {
            padding: 120px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #ff6b35, #f7931e, #27ae60);
            background-size: 400% 400%;
            animation: gradientShift 10s ease infinite;
            opacity: 0.8;
        }

        .testimonials-content {
            position: relative;
            z-index: 2;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 50px;
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .testimonial-card:hover::before {
            transform: scale(1);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 2;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .author-info h4 {
            font-weight: 700;
            margin-bottom: 4px;
        }

        .author-info p {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: #2d3748;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #ff6b35, #27ae60);
            opacity: 0.1;
            animation: gradientShift 8s ease infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .cta p {
            font-size: 1.5rem;
            margin-bottom: 50px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .urgency-banner {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 40px;
            font-weight: 600;
            font-size: 1.2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Step Info Popup */
        .step-popup {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .step-popup.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-popup-content {
            background: white;
            padding: 50px;
            border-radius: 32px;
            max-width: 700px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
        }

        .step-popup-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            font-weight: bold;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-popup-close:hover {
            color: #ff6b35;
            transform: scale(1.1);
        }

        .step-popup-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f7fafc;
        }

        .step-popup-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: white;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
            flex-shrink: 0;
        }

        .step-popup-title {
            font-size: 2rem;
            font-weight: 800;
            color: #2d3748;
            margin: 0;
        }

        .step-popup-description {
            font-size: 1.2rem;
            color: #718096;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .step-popup-details {
            display: grid;
            gap: 25px;
        }

        .step-detail-section {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(39, 174, 96, 0.05));
            padding: 25px;
            border-radius: 16px;
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .step-detail-section h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .step-detail-section ul {
            list-style: none;
            padding-left: 0;
        }

        .step-detail-section li {
            padding: 8px 0;
            color: #4a5568;
            position: relative;
            padding-left: 25px;
            line-height: 1.5;
        }

        .step-detail-section li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #27ae60;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .step-benefits {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 25px;
            border-radius: 16px;
            margin-top: 20px;
        }

        .step-benefits h4 {
            color: white;
            margin-bottom: 15px;
        }

        .step-benefits li::before {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Booking Modal */
        .traning-page .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .traning-page .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .traning-page .modal-content {
            background: white;
            padding: 50px;
            border-radius: 32px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
        }

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

        .modal-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            font-weight: bold;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            color: #ff6b35;
            transform: scale(1.1);
        }

        .modal-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #2d3748;
            margin-bottom: 20px;
            text-align: center;
        }

        .modal-subtitle {
            font-size: 1.2rem;
            color: #718096;
            text-align: center;
            margin-bottom: 40px;
        }

        .booking-form {
            display: grid;
            gap: 25px;
        }

        .booking-form .form-group {
            margin-bottom: 0;
        }

        .booking-form input,
        .booking-form select,
        .booking-form textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .booking-form input:focus,
        .booking-form select:focus,
        .booking-form textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

        .booking-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .booking-form label {
            display: block;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .booking-summary {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(39, 174, 96, 0.1));
            padding: 25px;
            border-radius: 16px;
            margin: 30px 0;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .booking-summary h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #4a5568;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.4rem;
            font-weight: 800;
            color: #ff6b35;
            border-top: 2px solid rgba(255, 107, 53, 0.2);
            padding-top: 15px;
            margin-top: 15px;
        }

        .booking-submit {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 18px 36px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        .booking-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .hero-benefits {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .benefit-item {
                min-width: auto;
                width: 100%;
                max-width: 350px;
            }

            .urgency-offer {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }

            .calculator-form {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .calculator-container {
                padding: 40px 20px;
            }

            .form-group select,
            .form-group input {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 18px 20px;
                min-height: 56px; /* Better touch target */
            }

            .form-group select {
                padding-right: 50px;
                background-size: 24px;
            }

            .price-display {
                margin-top: 30px;
                padding: 30px 20px;
            }

            .price-amount {
                font-size: 3rem;
            }

            .timeline-item {
                flex-direction: column !important;
                text-align: center;
            }

            .timeline-content {
                margin: 20px 0 0 0 !important;
            }

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

            .service-card:hover {
                transform: translateY(-10px) rotateY(0deg);
            }

            .cta h2 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }
