/* CalFlare Website Enhancements */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced feature cards */
.single-profile {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Icon styling for benefits section */
.single-services {
    transition: transform 0.3s ease;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.single-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Pricing card enhancements */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
}

/* Button enhancements */
.btn-primary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108,117,125,0.3);
}

.btn-outline-primary {
    border: 2px solid #6c757d;
    color: #6c757d;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108,117,125,0.3);
}

/* Hero section enhancements */
.hero__caption h1 {
    font-weight: 700;
    line-height: 1.2;
}

.hero__caption p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Section spacing */
.section-padding {
    padding: 80px 0;
}

.team-padding {
    padding: 80px 0;
}

/* Feature icons styling */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6c757d, #868e96);
    color: white;
    font-size: 2rem;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hero__caption h1 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .team-padding {
        padding: 60px 0;
    }

    .single-services {
        margin-bottom: 30px;
    }
}

/* Navigation enhancements */
#navigation li a.btn-primary {
    padding: 8px 20px;
    border-radius: 25px;
    margin-left: 15px;
}

/* Check icon styling */
.fa-check {
    width: 20px;
    text-align: center;
}

/* Profile image hover effects */
.profile-img img {
    transition: transform 0.3s ease;
}

.single-profile:hover .profile-img img {
    transform: scale(1.05);
}

/* CTA section text shadow */
.services-area h2,
.services-area p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Enhanced list styling */
ul li {
    position: relative;
    padding-left: 0;
}

/* Gradient overlay for hero section */
.slider-area .overlay::before {
    background: linear-gradient(135deg, rgba(52,58,64,0.8), rgba(73,80,87,0.8));
}

/* Professional spacing */
.mb-10 {
    margin-bottom: 10px;
}

/* Enhanced shadows */
.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Pricing card special effects */
.pricing-popular {
    position: relative;
}

.pricing-popular::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #00d4ff, #007bff);
    z-index: -1;
    border-radius: 12px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(0,123,255,0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(0,123,255,0.8);
    }
}
