/* ----------------------------------

Template Name: Robok - AI Agency & Technology HTML Template
Author: validtheme
Description:
Version: 1.0

Main Font    : Sora
Main Color   : #7476ff

-------------------------------------

[Typography]

Body copy:    15px 'Sora', sans-serif
Header:     36px 'Sora', sans-serif
Input, textarea:  16px 'Sora', sans-serif
Sidebar heading:  20px 'Sora', sans-serif

>>> TABLE OF CONTENTS:
=======================
        
    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
    02. Preloader
    03. Topbar
	    - Topbar Style One
        - Topbar Style Two
    04 Navbar
        - Navbar Default
        - Navbar Transparent
        - Navbar Sticky
        - Navbar Box
    05. Banner
        - Banner Fade
        - Banner Slide
        - Banner Zoom
    06. About Us
	    - About Style One
        - About Style Two
    07. Services
        - Tab Version
        - Grid Version
        - Services Single
    08. Features
    09. Work Process
    10. Why Choose Us
    11. Fun Factor
    12. Pricing Table
    12. Partner World Wide
    13. Team
        - Grid Version
        - Carousel Version
        - Team Details
    14. Testimonials
		- Single Slider
        - Center Slider
    15. Projects
		- Grid Version
        - Carousel Version
        - Project Details
    16. Blog
        - Standard
        - Left Sidebar
        - Right Sidebar
        - Single
    17. Request Call Back
    18. FAQ
    19. Error 404
    20. Footer
    21. PHP Contact Form
    22. Others

*/

/*
** Write you custom css below
*/

/* Custom styles for Presupuesto Form */
.custom-checkbox-group {
    padding: 0;
}

.custom-checkbox-item {
    position: relative;
    margin-bottom: 15px;
}

.custom-checkbox {
    display: none;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.custom-checkbox-label:hover {
    background: rgba(116, 118, 255, 0.2);
    border-color: rgba(116, 118, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 118, 255, 0.3);
}

.custom-checkbox:checked + .custom-checkbox-label {
    background: linear-gradient(135deg, #7476ff, #6c5ce7);
    border-color: #7476ff;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(116, 118, 255, 0.4);
}

.custom-checkbox:checked + .custom-checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    pointer-events: none;
}

.checkbox-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.custom-checkbox:checked + .custom-checkbox-label .checkbox-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.checkbox-content {
    flex-grow: 1;
}

.checkbox-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.checkbox-content span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.custom-checkbox:checked + .custom-checkbox-label .checkbox-content strong {
    color: #ffffff;
}

.custom-checkbox:checked + .custom-checkbox-label .checkbox-content span {
    color: rgba(255, 255, 255, 0.9);
}

/* Form improvements */
.pricing-style-two.active {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: 2px solid #7476ff;
    box-shadow: 0 20px 40px rgba(116, 118, 255, 0.2);
}

.pricing-style-two .form-group {
    margin-bottom: 20px;
}

.pricing-style-two .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.pricing-style-two .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #7476ff;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(116, 118, 255, 0.25);
}

.pricing-style-two .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-style-two .form-control option {
    background: #2c3e50;
    color: #ffffff;
}

.pricing-style-two textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Button styling */
.pricing-style-two .btn-style-one {
    background: linear-gradient(135deg, #7476ff, #6c5ce7);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(116, 118, 255, 0.3);
}

.pricing-style-two .btn-style-one:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(116, 118, 255, 0.4);
    background: linear-gradient(135deg, #6c5ce7, #5f27cd);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .custom-checkbox-label {
        padding: 15px;
    }
    
    .checkbox-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        font-size: 18px;
    }
    
    .checkbox-content strong {
        font-size: 15px;
    }
    
    .checkbox-content span {
        font-size: 13px;
    }
}

/* Animation for checkbox selection */
@keyframes checkboxPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.custom-checkbox:checked + .custom-checkbox-label {
    animation: checkboxPulse 0.3s ease-in-out;
}
