    /* Modern Color Scheme */
        :root {
            --primary: #2563eb;  /* Blue-600 */
            --primary-dark: #1d4ed8; /* Blue-700 */
            --secondary: #059669; /* Emerald-600 */
            --accent: #d946ef; /* Fuchsia-500 */
            --light: #f8fafc; /* Slate-50 */
            --dark: #1e293b; /* Slate-800 */
            --gray: #94a3b8; /* Slate-400 */
            --border: #e2e8f0; /* Slate-200 */
            --success: #10b981; /* Emerald-500 */
            --error: #ef4444; /* Red-500 */
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: white;
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
       

        /* Header 
        header {
            background-color: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        nav a {
            color: var(--dark);
            text-decoration: none;
            margin-left: 30px;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        */   /* Pricing Section */
        .pricing-section {
            padding: 60px 0;
        }
        
        .pricing-section h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .pricing-section p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 40px;
        }
        
        /* New Calculator Design */
        .calculator-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .calculator-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .option-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .option-card:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
        }
        
        .option-card.selected {
            border-color: var(--primary);
            background-color: rgba(37, 99, 235, 0.03);
        }
        
        .option-card.selected::after {
            content: '✓';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 24px;
            height: 24px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        
        .option-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .option-price {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .option-desc {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* Counter Control */
        .counter-control {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .counter-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--light);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.2s;
        }
        
        .counter-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .counter-value {
            margin: 0 15px;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }
        
        /* Summary Section */
        .calculator-summary {
            background-color: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            position: sticky;
            top: 120px;
        }
        
        .summary-total {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }
        
        .summary-total h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--gray);
        }
        
        .total-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        
        .detail-item:last-child {
            border-bottom: none;
        }
        
        .cta-button {
            width: 100%;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 16px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            margin-top: 30px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
        }
        
        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        
        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .modal-content h2 {
            margin-top: 0;
            color: var(--dark);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
        }
        
        .selected-services {
            margin: 25px 0;
            padding: 20px;
            background-color: var(--light);
            border-radius: 8px;
        }
        
        .selected-services h3 {
            margin-top: 0;
            color: var(--dark);
        }
        
        .service-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        
        .total-summary {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
            font-size: 1.1rem;
        }
        
        .form-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .cancel-btn, .submit-btn {
            flex: 1;
            padding: 14px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .cancel-btn {
            background-color: white;
            border: 1px solid var(--border);
            color: var(--dark);
        }
        
        .cancel-btn:hover {
            background-color: var(--light);
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
        }
        
        .submit-btn:hover {
            background-color: var(--primary-dark);
        }
        
        /* Status Message */
        .status-message {
            padding: 15px;
            margin: 20px 0;
            border-radius: 8px;
            text-align: center;
        }
        
        .success {
            background-color: rgba(16, 185, 129, 0.1);
            color: var(--success);
            border: 1px solid var(--success);
        }
        
        .error {
            background-color: rgba(239, 68, 68, 0.1);
            color: var(--error);
            border: 1px solid var(--error);
        }
        
      

        /* Responsive */
        @media (max-width: 768px) {
            .calculator-container {
                grid-template-columns: 1fr;
            }
            
            .calculator-options {
                grid-template-columns: 1fr;
            }
            
            .calculator-summary {
                position: static;
                margin-top: 30px;
            }
        }