/* ==========================================================================
   SERVICE PLANS SECTION
   ========================================================================== */

.service-plans-section {
    padding: 80px 20px;
}

/* Section Header */
.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-main-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.plans-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Single Plan Container */
.single-plan-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Plans Grid (legacy support) */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Plan Card */
.plan-card {
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.95), rgba(15, 15, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
}

.plan-card.combined-plan {
    cursor: default;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 1;
}

.plan-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 60%);
    pointer-events: none;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.plan-card.featured {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(20, 20, 25, 0.95));
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Decorative Elements */
.plan-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.decoration-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* Header Section - Premium */
.plan-header-section {
    text-align: center;
    padding: 80px 60px 50px;
    position: relative;
    z-index: 2;
}

.plan-badge-wrapper {
    margin-bottom: 40px;
}

/* Plan Badge - Premium with Gold Accent */
.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.25),
            rgba(139, 92, 246, 0.2)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    border: 1.5px solid rgba(139, 92, 246, 0.5);
    color: #a78bfa;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.plan-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.plan-badge:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.plan-badge i {
    font-size: 12px;
    color: #fbbf24;
    filter: none;
    animation: none;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Icon Wrapper */
.plan-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

/* Plan Icon */
.plan-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #60a5fa;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: none;
    transition: all 0.4s ease;
}

.plan-icon:hover {
    transform: scale(1.03);
    box-shadow: none;
}

.icon-glow {
    display: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.plan-card:hover .plan-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Plan Title - Premium */
.plan-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg,
            #ffffff 0%,
            #e0e7ff 50%,
            #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
    position: relative;
}

.plan-tagline {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* Divider - Premium */
.plan-divider {
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(59, 130, 246, 0.15) 20%,
            rgba(139, 92, 246, 0.4) 50%,
            rgba(59, 130, 246, 0.15) 80%,
            transparent 100%);
    margin: 0 60px 50px;
    position: relative;
}

.plan-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    box-shadow: none;
}

/* Plan Description */
.plan-description {
    padding: 0 50px 40px;
    position: relative;
    z-index: 2;
}

.plan-description p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid - Premium */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 60px 50px;
    position: relative;
    z-index: 2;
}

.feature-column {
    min-width: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.feature-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-column:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.04));
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.feature-column:hover::before {
    opacity: 1;
}

/* Feature Column Header */
.feature-column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.feature-column-header i {
    font-size: 20px;
    color: #60a5fa;
}

/* Features Section */
.plan-features {
    margin-bottom: 28px;
}

.features-heading {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    transition: all 0.2s ease;
}

.features-list li:hover {
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: #10b981;
    font-size: 14px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.not-included-list i {
    color: rgba(239, 68, 68, 0.6);
    font-size: 14px;
}

.best-for-list i {
    color: #f59e0b;
    font-size: 14px;
}

.plan-best-for {
    margin-bottom: 32px;
}

/* Approach Section - Premium */
.plan-approach {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 0 60px 50px;
    padding: 40px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.12),
            rgba(139, 92, 246, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #3b82f6, #8b5cf6) 1;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.plan-approach::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.approach-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow:
        0 8px 24px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
}

.approach-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 16px;
    opacity: 0.5;
}

.approach-content {
    flex: 1;
}

.approach-heading {
    font-size: 16px;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.approach-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* CTA Section - Premium */
.plan-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 0 60px 60px;
    position: relative;
    z-index: 2;
}

/* Dual CTA Buttons - Premium */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    letter-spacing: 0.5px;
}

.cta-btn i {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-btn:hover i {
    transform: scale(1.25) rotate(5deg);
}

/* Email Button - Premium Outline */
.email-btn {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 2px solid #3b82f6;
    border-radius: 16px;
    color: #60a5fa;
    box-shadow: none;
}

.email-btn::before {
    display: none;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(59, 130, 246, 0.05);
}

.email-btn:hover::before {
    opacity: 1;
}

.email-btn span,
.email-btn i {
    position: relative;
    z-index: 2;
}

/* Talk Button - Premium Gradient */
.talk-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: none;
    position: relative;
}

.talk-btn::before {
    display: none;
}

.talk-btn::after {
    display: none;
}

.talk-btn:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.talk-btn:hover::after {
    opacity: 0.6;
}

.talk-btn span,
.talk-btn i {
    position: relative;
    z-index: 2;
}

.email-btn:hover::before {
    opacity: 1;
}

.email-btn span,
.email-btn i {
    position: relative;
    z-index: 2;
}

.lets-talk-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.lets-talk-btn i {
    font-size: 20px;
}

/* Plan Overlay (on hover) */
.plan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(139, 92, 246, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 24px;
}

.plan-card:hover .plan-overlay {
    opacity: 1;
    pointer-events: all;
}

.overlay-content {
    text-align: center;
    padding: 40px;
}

.overlay-content h4 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.overlay-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.6;
}

.overlay-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #1e293b;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .service-plans-section {
        padding: 60px 20px;
    }

    .plans-main-title {
        font-size: 36px;
    }

    .plans-subtitle {
        font-size: 16px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .plan-card.combined-plan {
        padding: 32px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-title {
        font-size: 24px;
    }

    .featured-badge {
        top: 16px;
        right: 16px;
        font-size: 10px;
        padding: 5px 12px;
    }

    .overlay-content h4 {
        font-size: 24px;
    }

    .overlay-content p {
        font-size: 14px;
    }

    .lets-talk-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}