:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --dark-bg: #121212;
    --dark-card: #1E1E1E;
    --text-color: #E0E0E0;
    --accent-color: #e74c3c;
    --transition-speed: 0.3s;
    --card-border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(30, 30, 30, 0.7);
    --card-hover-bg: rgba(35, 35, 35, 0.85);
    --card-glow: rgba(52, 152, 219, 0.15);
}

/* Pricing Section General Styles */
#pricing {
    padding: 4rem 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Card Styling */
.glassmorphic-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.glassmorphic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glassmorphic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px var(--card-glow);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--card-hover-bg);
}

.glassmorphic-card:hover::before {
    opacity: 1;
}

/* Service Icons */
.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.support-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Styling */
.pricing-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pricing-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
    padding: 5px 0;
    position: relative;
    display: inline-block;
}

.pricing-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Buttons */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.btn-link::after {
    content: '→';
    position: relative;
    opacity: 0;
    top: 0;
    right: -5px;
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--secondary-color);
    padding-right: 12px;
}

.btn-link:hover::after {
    opacity: 1;
    right: 0;
}

/* Support Services Section */
.support-services {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(35, 35, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-services h3 {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
}

/* Consultation Section */
#consultation {
    margin-top: 5rem;
    padding: 3rem 0;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8), var(--dark-bg));
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

#consultation h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .glassmorphic-card {
        margin-bottom: 1.5rem;
    }

    .support-services .text-lg-end {
        text-align: center !important;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    #pricing {
        padding: 2rem 0;
    }

    .service-icon {
        font-size: 1.8rem;
    }

    .pricing-title {
        font-size: 1.4rem;
    }

    #consultation h3 {
        font-size: 1.6rem;
    }
}

/* Additional Animation Effects */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.btn-primary.btn-lg {
    animation: pulse 2s infinite;
}

/* Text Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title, .pricing-title {
    animation: fadeUp 0.8s ease-out forwards;
}