:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

/* ===============================
   Micro Purchase & NAICS Section
=================================*/

.micro-purchase-section {
    /* background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%); */
    position: relative;
}

/* Section Heading */
.micro-purchase-section .section-title {
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
}

.micro-purchase-section h1 {
    color: var(--dark);
    margin-top: 10px;
}

/* Card Styling */
.micro-purchase-section .hover-scale {
    background: linear-gradient(135deg, #1a2a4e 0%, #0f1f3f 50%, #0a1428 100%);
    border: none !important;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Soft top accent line */
.micro-purchase-section .hover-scale::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00e0ff);
    transition: height 0.4s ease;
}

/* Hover Effect */
.micro-purchase-section .hover-scale:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(6, 187, 204, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #2a3a5e 0%, #1f2f4f 50%, #1a2438 100%);
}

.micro-purchase-section .hover-scale:hover::before {
    height: 6px;
}

/* Card Titles */
.micro-purchase-section h5 {
    color: #ffffff;
    font-size: 20px;
    position: relative;
    font-weight: 700;
}

/* Paragraph */
.micro-purchase-section p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Remove default bullets */
.micro-purchase-section ul {
    list-style: none;
    padding-left: 0;
}

/* Custom Check List */
.micro-purchase-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #d0d0d0;
}

/* Check Icon */
.micro-purchase-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

/* ===============================
   Services Section (Capability Boxes)
=================================*/

.capability-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfc 100%);
    border-left: 4px solid #06BBCC;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.capability-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(6, 187, 204, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: all 0.6s ease;
}

.capability-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 187, 204, 0.2);
    border-left-color: #00d9ef;
}

.capability-box:hover::before {
    transform: translate(20%, -40%);
    width: 150px;
    height: 150px;
}

.capability-title {
    color: var(--dark);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.checklist-professional li {
    color: #555;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.checklist-professional li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06BBCC;
    font-weight: 700;
    transition: all 0.3s ease;
}

.capability-box:hover .checklist-professional li::before {
    color: #00d9ef;
}

/* ===============================
   Contact Form Section
=================================*/

.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    padding-top: 10px !important;
    padding-bottom: 50px !important;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #fbfcfd 100%);
    border: 1px solid rgba(6, 187, 204, 0.15);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    padding: 40px !important;
}

.contact-form:hover {
    box-shadow: 0 25px 60px rgba(6, 187, 204, 0.15);
}

.form-floating > .form-control {
    background: #ffffff;
    border: 2px solid #e8f0f5;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 16px 14px;
    font-size: 15px;
    color: #333;
}

.form-floating > .form-control:focus {
    border-color: #06BBCC;
    box-shadow: 0 0 0 4px rgba(6, 187, 204, 0.1), inset 0 0 0 1px rgba(6, 187, 204, 0.3);
    background: #ffffff;
}

.form-floating > .form-control::placeholder {
    color: transparent;
    opacity: 0;
}

.form-floating > label {
    color: #999;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 16px 14px;
    pointer-events: none;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #06BBCC;
    transform: scale(0.85) translateY(-1.5rem) translateX(0.15rem);
}

.btn.btn-primary, .btn.btn-secondary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #06BBCC 0%, #00a8ba 100%);
    border: none;
}
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.btn-sm, .btn-group-sm>.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .micro-purchase-section .hover-scale {
        padding: 25px;
    }
    
    .contact-form {
        padding: 30px !important;
    }
    
    .form-floating > label {
        padding: 12px 14px;
    }
    
    .form-floating > .form-control {
        padding: 12px 14px;
    }
}
