
        body {
            font-family: 'Arial', sans-serif;
            background: #f8f9fa;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        /* CTA Section Styles */
        .cta-section {
            background-color: var(--dark-gray);
            background-size: cover;
            background-attachment: fixed;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;
            color: var(--white);
            padding: 4rem 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(29, 38, 51, 0.85);
        }

        .cta-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-features {
            margin-bottom: 2rem;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #ccc;
            font-size: 1rem;
            font-weight: 500;
        }

        .cta-feature i {
            color: var(--theme-primary);
            font-size: 1.2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, #2563eb, #1d4ed8);
            border: none;
            color: white;
            padding: 12px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            /* border-radius: 50px; */
            transition: all .3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-primary-custom:hover {
            background: linear-gradient(45deg, #1d4ed8, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
            color: white;
            text-decoration: none;
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 12px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all .3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-outline-light:hover {
            background: white;
            color: #1a1a1a;
            transform: translateY(-2px);
            text-decoration: none;
        }

        .btn-lg-unified {
            padding: 15px 35px;
            font-size: 1.2rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 0;
            max-width: 800px;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.3s ease;
            position: relative;
        }

        .modal-header {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            color: white;
            padding: 3rem 3rem;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
            border-bottom: 3px solid #2563eb;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .modal-header .subtitle {
            color: #ccc;
            font-size: 1.1rem;
            margin-top: 0.5rem;
            font-weight: 300;
        }

        .modal-header .close {
            position: absolute;
            top: 15px;
            right: 20px;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .modal-header .close:hover {
            opacity: 1;
        }

        .modal-body {
            padding: 3rem 3rem;
            background: #fafafa;
        }

        .contact-form {
            max-width: 100%;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: #2c3e50;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e8ed;
            border-radius: 10px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--theme-primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .submit-btn {
            background: linear-gradient(45deg, #2563eb, #1d4ed8);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: linear-gradient(45deg, #1d4ed8, #1e40af);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .modal-footer {
            padding: 2rem 3rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 0 0 20px 20px;
            text-align: center;
            border-top: 1px solid #dee2e6;
        }

        .modal-footer p {
            margin: 0;
            color: #ccc;
            font-size: 1rem;
            font-weight: 500;
        }

        .modal-footer .security-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .security-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--theme-primary);
            font-size: 0.9rem;
            font-weight: 600;
        }

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

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .cta-section {
                padding: 3rem 0;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-subtitle {
                font-size: 1.1rem;
            }

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

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
                margin: 0.5rem 0;
            }

            .modal-content {
                width: 98%;
                margin: 0.5rem;
                max-width: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-button {
                width: 100%;
                max-width: 300px;
                padding: 15px 30px;
                font-size: 1rem;
            }

            .modal-header {
                padding: 2rem 2rem;
            }

            .modal-body {
                padding: 2rem 2rem;
            }

            .modal-footer {
                padding: 1.5rem 2rem;
            }

            .security-badges {
                flex-direction: column;
                gap: 1rem;
            }
        }