/* ULTRA PREMIUM Service CTA - Dockline Energy Signature */
.service-cta {
    background: linear-gradient(145deg, #1e3a8a 0%, #0077be 40%, #60a5fa 100%);
    padding: 55px 45px;
    border-radius: 24px;
    text-align: center;
    margin: 80px auto 50px;
    max-width: 780px;
    box-shadow: 
        0 25px 50px rgba(0, 119, 190, 0.35),
        0 0 0 1px rgba(255,255,255,0.2),
        inset 0 1px 0 rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-cta:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 70px rgba(0, 119, 190, 0.45),
        0 0 0 1px rgba(255,255,255,0.3);
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.service-cta:hover::before {
    left: 100%;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 22px;
    text-shadow: none;
    line-height: 1.15;
    letter-spacing: -0.8px;
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    border-radius: 2px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.97);
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-main {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 20px 45px !important;
    font-weight: 800 !important;
    font-size: 17px !important;
    border-radius: 14px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    box-shadow: 
        0 12px 30px rgba(34, 197, 94, 0.4),
        0 0 0 1px rgba(255,255,255,0.3) !important;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    font-family: 'Inter', sans-serif;
}

.cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-main:hover {
    transform: translateY(-6px) scale(1.03) !important;
    box-shadow: 
        0 20px 45px rgba(34, 197, 94, 0.55),
        0 0 0 1px rgba(255,255,255,0.4) !important;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
}

.cta-main:hover::before {
    left: 100%;
}

.cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-main:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5) !important;
    background: linear-gradient(135deg, #20ba5a, #1ea450) !important;
}

.cta-main:hover::before {
    left: 100%;
}

.cta-secondary {
    background: transparent !important;
    color: rgba(255,255,255,0.95) !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.7) !important;
    transform: translateY(-3px) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

@media (max-width: 768px) {
    .service-cta {
        padding: 35px 25px;
        margin: 40px auto 30px;
        border-radius: 14px;
    }
    
    .cta-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-main, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-main {
        padding: 16px 30px !important;
    }
    
    .cta-secondary {
        padding: 14px 28px !important;
    }
}

@media (max-width: 480px) {
    .service-cta {
        padding: 30px 20px;
        margin: 30px auto 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}
